Skip to content
Snippets Groups Projects
Select Git revision
  • 131d1fe36dd5f908647509528a9a265db6b7955d
  • master default
  • host01
  • ns4
  • kodi
5 results

library.shore.co.il.conf

Blame
  • library.shore.co.il.conf 655 B
    
    server {
        listen      80;
        listen      [::]:80;
        server_name library.shore.co.il;
        include     snippets/www-acme-challenge.conf;
        include     snippets/redirect-https.conf;
    }
    
    server {
        listen      443 ssl;
        listen      [::]:443 ssl;
        server_name library.shore.co.il;
        include     snippets/ssl.conf;
    
        location / {
            root                    /srv/library;
            client_body_temp_path   /tmp;
            dav_methods             PUT DELETE MKCOL COPY MOVE;
            autoindex               on;
            autoindex_exact_size    off;
    
            limit_except GET PROPFIND OPTIONS HEAD {
                deny    all;
            }
        }
    }