From cbc22059eead6ac4674c3818eb5858f325cb9f5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Moreau?= Date: Wed, 14 Jun 2017 11:13:00 +0200 Subject: [PATCH] Add Nginx conf for modules --- conf/nginx.conf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/conf/nginx.conf b/conf/nginx.conf index 4fcad8b..2f4fb91 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -37,5 +37,10 @@ location / { proxy_pass http://localhost:9220$uri; access_by_lua_file /usr/share/ssowat/access.lua; } + + location ~ /modules { + proxy_pass http://localhost:9220$uri; + access_by_lua_file /usr/share/ssowat/access.lua; + } }