| 1 | server {
|
|---|
| 2 | listen 8080;
|
|---|
| 3 | server_name nginx-server;
|
|---|
| 4 |
|
|---|
| 5 | location / {
|
|---|
| 6 | autoindex on;
|
|---|
| 7 | autoindex_format json;
|
|---|
| 8 |
|
|---|
| 9 | root /var/lib/nginx;
|
|---|
| 10 | client_body_temp_path /var/lib/nginx/tmp;
|
|---|
| 11 |
|
|---|
| 12 | create_full_put_path on;
|
|---|
| 13 | dav_access group:rw all:r;
|
|---|
| 14 | dav_methods PUT DELETE MKCOL COPY MOVE;
|
|---|
| 15 | }
|
|---|
| 16 | }
|
|---|