webinoly/templates/nginx/common/acl.conf

9 lines
193 B
Plaintext
Raw Normal View History

# Webinoly protect locations
# HTTP authentication || IP address
satisfy any;
auth_basic "Restricted Area";
auth_basic_user_file .htpasswd;
# Allowed IP Address List
allow 127.0.0.1;
deny all;