summaryrefslogtreecommitdiff
path: root/roles/dl/files/dl.conf
blob: 43b96da1b462c9e1284a1e5e1982fd6590b72841 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
server {
        server_name dl.crashbox.io;
        listen 80;
        listen 443;

        root /srv/dl;

        location /debian/mini-dinstall {
          deny all;
          return 403;
        }

        location / {
            try_files $uri $uri/ =404;
            autoindex on;
        }
}