docker-znc/default

21 lines
498 B
Plaintext
Raw Normal View History

server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
2015-02-15 10:25:32 -08:00
root /home/znc/pisg/output;
index index.html index.htm;
server_name localhost;
location / {
autoindex on;
try_files $uri $uri/ =404;
2015-02-15 10:25:32 -08:00
auth_basic "Restricted";
auth_basic_user_file /etc/nginx/htpasswd;
}
location /pub/ {
autoindex off;
alias /home/znc/pisg/output/.pub/;
}
location /gfx/ {
alias /usr/share/pisg/gfx/;
}
}