11 lines
195 B
Nginx Configuration File
11 lines
195 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
root /data;
|
|
|
|
location / {
|
|
dav_methods PUT DELETE;
|
|
create_full_put_path on;
|
|
autoindex on;
|
|
autoindex_format json;
|
|
}
|
|
}
|