来源:自学PHP网 时间:2015-04-14 11:51 作者: 阅读:次
[导读] nginx HttpAuthBasicModule身份认证配置auth_basichttp://wiki.nginx.org/HttpAuthBasicModule1. 首先生成密码Passwords must be encoded by function crypt(3). If Apache is installed,you can ......
nginx HttpAuthBasicModule身份认证配置auth_basic http://wiki.nginx.org/HttpAuthBasicModule
1. 首先生成密码
Passwords must be encoded by function crypt(3). If Apache is installed,
you can create the password file using the htpasswd program included.
crypt() 函数在php、perl里均有,盐值与input一样就可以。
<?php
echo crypt($argv[1], $argv[1]),"\n";
?>
2. 添加至配置文件
www.2cto.com
nginx.conf 配置里添加
location / {
auth_basic "Restricted";
auth_basic_user_file htpasswd;
}
这里要保证 htpasswd 这个文件可以被找到。
一把保存至 /usr/local/nginx/conf/htpasswd
这个文本文件就是记录 用户名:加密密码
3. reload nginx
作者 stallman
|
自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习
京ICP备14009008号-1@版权所有www.zixuephp.com
网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com