Uh oh!
There was an error while loading. Please reload this page.
Update Nginx configuration to replace $http_host with $host$is_request_port$request_port for better compatibility - #620
Update Nginx configuration to replace $http_host with $host$is_request_port$request_port for better compatibility#620nemchik wants to merge 5 commits into
Conversation
…ort for better compatibility Signed-off-by: Eric Nemchik <eric@nemchik.com>
Signed-off-by: Eric Nemchik <eric@nemchik.com>
LinuxServer-CI
commented
Jul 18, 2026
I am a bot, here is the pushed image/manifest for this PR for commit a393925 :
|
LinuxServer-CI
commented
Jul 18, 2026
I am a bot, here is the pushed image/manifest for this PR for commit 69afc4d :
|
…for improved compatibility Signed-off-by: Eric Nemchik <eric@nemchik.com>
LinuxServer-CI
commented
Jul 18, 2026
I am a bot, here is the pushed image/manifest for this PR for commit a2509cc :
|
LinuxServer-CI
commented
Jul 29, 2026
I am a bot, here is the pushed image/manifest for this PR for commit 6aa9d29 :
|
LinuxServer-CI
commented
Aug 16, 2026
I am a bot, here is the pushed image/manifest for this PR for commit 0150bc7 :
|
LinuxServer-CI
commented
Aug 16, 2026
I am a bot, here is the pushed image/manifest for this PR for commit aa0d432 :
|
Requires: #622
Needs alpine 3.24 rebase for nginx 1.29.3 or higher (alpine 3.24 has nginx 1.30.3)
First commit switched from
$http_hostto$host:$server_portbut this breaks when standard ports (80/443) are used.From FonduemangVI on Discord
This misses the need for handling non-standard ports (ex: 8443) for the users that do that.
nginx has some variables to solve it though:
$host$is_request_port$request_portis the current recommended solution.I do not run proxy auth currently, so I have not tested those changes.