Update Nginx configuration to replace $http_host with $host:$server_port for better compatibility

Signed-off-by: Eric Nemchik <eric@nemchik.com>
This commit is contained in:
Eric Nemchik
2026-07-18 12:28:50 -05:00
parent bc02502e97
commit 69afc4de58
4 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -33,5 +33,5 @@ proxy_set_header X-Forwarded-Server $host;
proxy_set_header X-Forwarded-Ssl on;
proxy_set_header X-Forwarded-Uri $request_uri;
proxy_set_header X-Original-Method $request_method;
proxy_set_header X-Original-URL $scheme://$http_host$request_uri;
proxy_set_header X-Original-URL $scheme://$host:$server_port$request_uri;
proxy_set_header X-Real-IP $remote_addr;