mkv

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

nginx.conf (195B)


      1 server {
      2     listen 80;
      3     root /data;
      4 
      5     location / {
      6         dav_methods PUT DELETE;
      7         create_full_put_path on;
      8         autoindex on;
      9         autoindex_format json;
     10     }
     11 }