From d08713822ef4d7b44a19d6ee350db05bea91aaf0 Mon Sep 17 00:00:00 2001 From: Sebastian <379651+czarly@users.noreply.github.com> Date: Thu, 24 Oct 2024 08:21:13 +0200 Subject: [PATCH] fix --- nginx-forwarder/default.conf.template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx-forwarder/default.conf.template b/nginx-forwarder/default.conf.template index 17c2abbd..057899b8 100644 --- a/nginx-forwarder/default.conf.template +++ b/nginx-forwarder/default.conf.template @@ -2,7 +2,7 @@ server { listen 80; location / { - proxy_pass ${TARGET_URL}; + proxy_pass ${TARGET_URL}/; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;