feat(deploy): prompt for service ports at install time; replace hardcoded 5000/5001/5002 with __PORT_*__ placeholders

This commit is contained in:
daniel-c-harvey
2026-06-04 13:27:00 -04:00
parent c14c032081
commit dfd6d33142
7 changed files with 26 additions and 7 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ server {
server_name __DOMAIN_APP__;
location / {
proxy_pass http://localhost:5001;
proxy_pass http://localhost:__PORT_MANAGER__;
proxy_http_version 1.1;
proxy_set_header Host $host;
+1 -1
View File
@@ -4,7 +4,7 @@ server {
server_name __DOMAIN_PUBLIC__;
location / {
proxy_pass http://localhost:5000;
proxy_pass http://localhost:__PORT_PUBLIC__;
proxy_http_version 1.1;
proxy_set_header Host $host;