From ffccdc6b85680489a0881e1af80edb4f67361709 Mon Sep 17 00:00:00 2001 From: Cullum Smith Date: Mon, 16 Dec 2024 20:35:26 -0500 Subject: add webdav to dav_server role --- files/usr/local/etc/nginx/nginx.conf.common | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'files/usr/local/etc/nginx/nginx.conf.common') diff --git a/files/usr/local/etc/nginx/nginx.conf.common b/files/usr/local/etc/nginx/nginx.conf.common index 59a4c43..6ed42fa 100644 --- a/files/usr/local/etc/nginx/nginx.conf.common +++ b/files/usr/local/etc/nginx/nginx.conf.common @@ -1,6 +1,7 @@ worker_processes ${nginx_worker_processes}; worker_rlimit_nofile ${nginx_nofile}; -$([ "${nginx_gssapi:-}" = true ] && echo 'load_module "/usr/local/libexec/nginx/ngx_http_auth_spnego_module.so";') +$([ "${nginx_gssapi:-}" = true ] && echo 'load_module "/usr/local/libexec/nginx/ngx_http_auth_spnego_module.so";') +$([ "${nginx_dav_ext:-}" = true ] && echo 'load_module "/usr/local/libexec/nginx/ngx_http_dav_ext_module.so";') events { worker_connections ${nginx_worker_connections}; -- cgit v1.2.3