From 449d1ec64f78757e3da327b4b31d6b1e4b2fb7f0 Mon Sep 17 00:00:00 2001 From: Justus Winter Date: Tue, 26 Feb 2019 14:32:11 +0100 Subject: [PATCH] Avoid regex match. --- nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx.conf b/nginx.conf index 9f39863..9cf6bf8 100644 --- a/nginx.conf +++ b/nginx.conf @@ -86,7 +86,7 @@ http { proxy_pass http://127.0.0.1:8080; } - location ^~ /vks/ { + location /vks/ { proxy_pass http://127.0.0.1:8080; } }