From 623ca4553300a8927b6a46e9334b4328716a248e Mon Sep 17 00:00:00 2001 From: Gregory Marco Date: Sun, 8 Dec 2024 00:58:02 -0600 Subject: [PATCH] Enable webdav --- nginx.conf.template | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nginx.conf.template b/nginx.conf.template index d27a2c3..8dd809a 100644 --- a/nginx.conf.template +++ b/nginx.conf.template @@ -37,5 +37,9 @@ server { autoindex on; root /usr/share/nginx/html; index index.html index.htm; + dav_access user:rw group:rw all:r; + dav_methods PUT; + dav_ext_methods PROPFIND OPTIONS LOCK UNLOCK; + client_max_body_size 100G; } }