From 89209822137c618fdc28d60d6fb4168a5a326abb Mon Sep 17 00:00:00 2001 From: kaiyou Date: Sat, 18 Nov 2017 16:40:01 +0100 Subject: [PATCH] Properly pass the request uri to the authentication backend --- core/nginx/conf/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/nginx/conf/nginx.conf b/core/nginx/conf/nginx.conf index f0ca4eb1..f9473d05 100644 --- a/core/nginx/conf/nginx.conf +++ b/core/nginx/conf/nginx.conf @@ -122,7 +122,7 @@ http { listen 127.0.0.1:8000; location / { - proxy_pass http://$admin/internal/; + proxy_pass http://$admin/internal$request_uri; } } }