在部分情况下,我们需要对用户身份进行登录认证。我们可以使用 auth_basic_user_file 指定用户名密码文件,该文件我们可以使用如下方法生成:
echo -n ‘admin:’ >> .httppasswd
openssl passwd >> .httppasswd
查看生成的密码文件:
cat .httppasswd
我们也可以openssl -arp1参数生成密码:
echo -n ‘admin1:’ >> .httppasswd
openssl passwd -apr1 >> .httppasswd
查看生成的密码文件:
cat .httppasswd
密码文件生成后,可以在nginx配置中增加文件后重启nginx即可
server {
listen 8900;
# auth
auth_basic “Restricted site”;
auth_basic_user_file /etc/nginx/conf.d/.httppasswd;
}
此时我们访问相关页面就需要输入对应的用户名密码了。