From 1454ef9c9abd5fe84c03993e1297c87e7014b675 Mon Sep 17 00:00:00 2001 From: kaiyou Date: Mon, 5 Jun 2017 13:13:06 +0200 Subject: [PATCH] Properly load the nginx lua module (cherry picked from commit 4bdd8c1df5fc29e9cdd350aaaadd05daa405af73) --- nginx/nginx.conf.default | 2 ++ nginx/nginx.conf.fallback | 2 ++ 2 files changed, 4 insertions(+) diff --git a/nginx/nginx.conf.default b/nginx/nginx.conf.default index 0d57ca50..80df4402 100644 --- a/nginx/nginx.conf.default +++ b/nginx/nginx.conf.default @@ -3,6 +3,8 @@ user nginx; worker_processes 1; error_log /dev/stderr info; pid /var/run/nginx.pid; +include /etc/nginx/modules/devel_kit.conf; +include /etc/nginx/modules/http_lua.conf; events { worker_connections 1024; diff --git a/nginx/nginx.conf.fallback b/nginx/nginx.conf.fallback index bf5cd869..8d071333 100644 --- a/nginx/nginx.conf.fallback +++ b/nginx/nginx.conf.fallback @@ -3,6 +3,8 @@ user nginx; worker_processes 1; error_log /dev/stderr info; pid /var/run/nginx.pid; +include /etc/nginx/modules/devel_kit.conf; +include /etc/nginx/modules/http_lua.conf; events { worker_connections 1024;