From 3194e4a6427dee9b4003e21211ee48e181f8f283 Mon Sep 17 00:00:00 2001 From: Kyle Nel <22053773+kdevnel@users.noreply.github.com> Date: Tue, 24 Feb 2026 09:40:44 +0200 Subject: [PATCH] Add HTTP_HOST parameter to fastcgi-params.conf Required to prevent malformed redirects when using HTTP/3 --- global/fastcgi-params.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/global/fastcgi-params.conf b/global/fastcgi-params.conf index 95ce527..0b38c64 100644 --- a/global/fastcgi-params.conf +++ b/global/fastcgi-params.conf @@ -20,6 +20,7 @@ fastcgi_param REMOTE_PORT $remote_port; fastcgi_param SERVER_ADDR $server_addr; fastcgi_param SERVER_PORT $server_port; fastcgi_param SERVER_NAME $server_name; +fastcgi_param HTTP_HOST $host; # PHP only, required if PHP was built with --enable-force-cgi-redirect -fastcgi_param REDIRECT_STATUS 200; \ No newline at end of file +fastcgi_param REDIRECT_STATUS 200;