From 17d49d75c62e7fe53609f9e99ff0225c97303e68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Moreau?= Date: Wed, 21 Jun 2017 11:45:23 +0200 Subject: [PATCH] [fix] HTTP GET parameters were not shared to modules --- conf/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index 2f4fb91..26b82ef 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -39,7 +39,7 @@ location / { } location ~ /modules { - proxy_pass http://localhost:9220$uri; + proxy_pass http://localhost:9220; access_by_lua_file /usr/share/ssowat/access.lua; }