From 5522e417b6a0af4ff61968781d214bb376f54add Mon Sep 17 00:00:00 2001 From: kload Date: Sat, 22 Aug 2015 22:45:33 +0200 Subject: [PATCH] [fix] Resolve path properly --- conf/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index 6a1e979..294ba0f 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -2,7 +2,7 @@ location LOCATIONTOCHANGE { if ($scheme = http) { rewrite ^ https://$server_name$request_uri? permanent; } - proxy_pass http://127.0.0.1:9191/; + proxy_pass http://127.0.0.1:9191LOCATIONTOCHANGE; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection 'upgrade';