docker/zotero-sync/nginx/site-confs/default.conf
2024-11-10 11:11:14 +01:00

18 lines
310 B
Plaintext

server {
listen 80;
client_max_body_size 0;
location / {
root /data;
dav_methods PUT DELETE MOVE;
dav_ext_methods PROPFIND OPTIONS;
dav_access user:rw group:rw all:r;
auth_basic "Restricted";
auth_basic_user_file /config/nginx/htpasswd;
}
}