From aba4f898d04d2e407047af41c305f87c8ef5066b Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Tue, 15 Aug 2023 08:46:45 +0200 Subject: [PATCH] nginx.conf: http_host -> host --- conf/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index c220744..4d3fb10 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -3,7 +3,7 @@ location __PATH__/ { proxy_pass http://127.0.0.1:__PORT__/; proxy_pass_request_headers on; - proxy_redirect ~^/(.*) $scheme://$http_host__PATH__/$1; + proxy_redirect ~^/(.*) $scheme://$host__PATH__/$1; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;