webinoly/templates/nginx/common/acl.conf
Cristhian Martínez Ochoa 13d9025391 Initial release
First commit to public release.
2017-09-16 14:37:13 -06:00

9 lines
193 B
Plaintext

# 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;