aports/config/nginx/module/seedbox.conf

16 lines
418 B
Plaintext
Raw Normal View History

server {
listen *:7576 so_keepalive=on;
listen [::]:7576 so_keepalive=on;
2022-04-03 18:48:31 +00:00
location / {
root /seedbox;
2022-04-03 18:48:31 +00:00
fancyindex on;
fancyindex_exact_size off;
limit_except GET HEAD PROPFIND OPTIONS {
deny all;
}
2022-04-03 18:48:31 +00:00
dav_methods off;
dav_ext_methods PROPFIND OPTIONS;
}
}