docker-znc/default

24 lines
586 B
Plaintext

limit_req_zone $binary_remote_addr zone=one:10m rate=1r/s;
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
root /home/znc/pisg/output;
index index.html index.htm;
server_name localhost;
location / {
limit_req zone=one;
autoindex on;
try_files $uri $uri/ =404;
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/;
}
}