16 lines
418 B
Plaintext
16 lines
418 B
Plaintext
server {
|
|
listen *:7576 so_keepalive=on;
|
|
listen [::]:7576 so_keepalive=on;
|
|
|
|
location / {
|
|
root /seedbox;
|
|
fancyindex on;
|
|
fancyindex_exact_size off;
|
|
limit_except GET HEAD PROPFIND OPTIONS {
|
|
deny all;
|
|
}
|
|
dav_methods off;
|
|
dav_ext_methods PROPFIND OPTIONS;
|
|
}
|
|
}
|