From da64475612012ce3dbcc792dac0b0f5cffc711dd Mon Sep 17 00:00:00 2001 From: Michel Roegl-Brunner <73236783+michelroegl-brunner@users.noreply.github.com> Date: Mon, 1 Jun 2026 21:39:10 +0200 Subject: [PATCH] fix(dispatcharr): forward nginx port for M3U URLs on new installs (#14862) Dispatcharr builds absolute proxy URLs from reverse-proxy headers. Without X-Forwarded-Port, downloaded M3U playlists omit :9191. Fixes #14839 Co-authored-by: Cursor --- install/dispatcharr-install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install/dispatcharr-install.sh b/install/dispatcharr-install.sh index 7522ac283..f39dee893 100644 --- a/install/dispatcharr-install.sh +++ b/install/dispatcharr-install.sh @@ -121,6 +121,7 @@ server { # All other requests proxy to uWSGI location / { include proxy_params; + proxy_set_header X-Forwarded-Port \$server_port; proxy_pass http://127.0.0.1:5656; } }