updated nginx state
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Paul 2024-04-11 10:30:13 +02:00
parent 1aabea8525
commit 6a3e2a464b
2 changed files with 4 additions and 0 deletions

View File

@ -8,6 +8,7 @@ nginx:
dir: /etc/nginx
geoip: false
webdav: false
lua: false
user: www-data
group: www-data
workers: 4

View File

@ -7,6 +7,9 @@ load_module modules/ngx_http_geoip2_module.so;
{%- if nginx.config.webdav %}
load_module modules/ngx_http_dav_ext_module.so;
{%- endif%}
{%- if nginx.config.lua %}
load_module modules/ngx_http_lua_module.so;
{%- endif%}
user {{ nginx.config.user }};