From 108f126c1fbe1d316b50c186634ef35a8a84c807 Mon Sep 17 00:00:00 2001 From: Sebastian <379651+czarly@users.noreply.github.com> Date: Wed, 6 Nov 2024 13:32:01 +0100 Subject: [PATCH] fix rsk with fixed host header in nginx proxy --- nginx-proxy/default.conf.template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx-proxy/default.conf.template b/nginx-proxy/default.conf.template index a1ae0c03..7524daa8 100644 --- a/nginx-proxy/default.conf.template +++ b/nginx-proxy/default.conf.template @@ -9,7 +9,7 @@ server { location / { proxy_pass http://$proxy_connection; - proxy_set_header Host $host; + proxy_set_header Host localhost; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme;