From d388f451373981bc4cd02b23f250e59bbaeb3258 Mon Sep 17 00:00:00 2001 From: SergeantPanda Date: Sat, 30 May 2026 14:16:35 -0500 Subject: [PATCH] feat(nginx): add X-Forwarded-Port header to proxy settings --- debian_install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/debian_install.sh b/debian_install.sh index 305424f8..4af337e4 100755 --- a/debian_install.sh +++ b/debian_install.sh @@ -414,6 +414,7 @@ server { listen ${NGINX_HTTP_PORT}; location / { include proxy_params; + proxy_set_header X-Forwarded-Port \$server_port; proxy_pass http://unix:${GUNICORN_SOCKET}; } location /static/ {