fix: Remove SERVER_WORKFLOW_HOSTNAME and related references to streamline configuration

This commit is contained in:
Nawaz Dhandala
2026-03-04 13:43:06 +00:00
parent 3cbe443862
commit c5f04595e8
4 changed files with 2 additions and 16 deletions

View File

@@ -15,10 +15,6 @@ upstream worker {
server ${SERVER_WORKER_HOSTNAME}:${WORKER_PORT} weight=10 max_fails=3 fail_timeout=30s;
}
upstream workflow {
server ${SERVER_WORKFLOW_HOSTNAME}:${WORKFLOW_PORT} weight=10 max_fails=3 fail_timeout=30s;
}
upstream home {
server ${SERVER_HOME_HOSTNAME}:${HOME_PORT} weight=10 max_fails=3 fail_timeout=30s;
}
@@ -859,7 +855,7 @@ ${PROVISION_SSL_CERTIFICATE_KEY_DIRECTIVE}
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_pass http://workflow;
proxy_pass http://worker;
client_max_body_size 50M;
}