BasicAuthentication with Nginx
NOT YET WORKING …
Install NGINX
pkg_add -v nginx
rcctl enable nginx
rcctl restart nginx
Enable BasicAuth
server {
...
auth_basic "Administrator’s Area";
auth_basic_user_file conf/htpasswd;
location /public/ {
auth_basic off;
}
}
Create File and User
htpasswd -c /etc/apache2/.htpasswd user1
Restart Service
rcctl restart nginx
Source
https://docs.nginx.com/nginx/admin-guide/security-controls/configuring-http-basic-authentication/
Any Comments ?
sha256: b0311dad9186b4e2f8cd9730688c8e75c09a3ff687259cccc132810a706cb2f6