feat(nginx): add X-Forwarded-Port header to proxy settings

This commit is contained in:
SergeantPanda 2026-05-30 14:16:35 -05:00
parent 569dce1ba4
commit d388f45137

View file

@ -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/ {