赞
踩
yum -y install httpd-tools
[root@localhost nginx]# htpasswd -c /usr/local/nginx/password web01
New password: 这里输入密码
Re-type new password: 再次输入密码
Adding password for user web01
参数说明:
web01
是自定义用户
password
是密码文件
回车后,输入用户名的密码,就完成了文件的生成。
cat /usr/local/nginx/password
server { listen 80; ... # 验证时的提示信息 auth_basic "请输入用户和密码"; # 认证文件 auth_basic_user_file /usr/local/nginx/password; location / { } }
#-D 删除指定的用户
htpasswd -D /usr/local/nginx/password username
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。