Ajout de Webdav extension à NginX

This commit is contained in:
VC
2019-12-01 11:08:19 +01:00
parent 72cd967a79
commit edcc161642
5 changed files with 25 additions and 1 deletions

View File

@@ -19,8 +19,13 @@ server {
server_name nfs.mateu.be;
location / {
root /var/lib/transmission-daemon/downloads/;
# standard
autoindex on;
allow 10.233.212.64/27;
# dav
dav_methods off;
dav_ext_methods PROPFIND OPTIONS;
dav_access all:r;
}
}