Nginx 的 ngx_http_auth_basic_module模块允许通过使用“HTTP基本认证”协议验证用户名和密码来限制对资源的访问。
配置举例:
location / { auth_basic "closed site"; auth_basic_user_file conf/htpasswd; }
#生成htpasswd密码文件,并指定账号、密码
[root@localhost ~]# cd /usr/local/nginx/conf/
[root@localhost conf]# htpasswd -bc /usr/local/nginx/conf/htpasswd username passwd
Adding password for user username
[root@localhost conf]chmod 400 htpasswd
重启Nginx