Use Debian repo version of nginx

It's older, and doesn't have `stream` compiled in, but the repo one can't link to any of the installed modules, which is a non-starter.
This commit is contained in:
Jake Howard
2024-01-04 14:17:36 +00:00
parent 57ad143268
commit c8211d4756
3 changed files with 6 additions and 10 deletions

View File

@ -5,6 +5,10 @@ error_log /var/log/nginx/error.log;
load_module /usr/lib/nginx/modules/ngx_http_brotli_filter_module.so;
load_module /usr/lib/nginx/modules/ngx_http_headers_more_filter_module.so;
{% if ansible_os_family != 'Archlinux'%}
load_module /usr/lib/nginx/modules/ngx_stream_module.so;
{% endif %}
pcre_jit on;
events {