知识屋:更实用的电脑技术知识网站
所在位置:首页 > 操作系统 > linux

nginx HttpAuthBasicModule身份认证配置auth_basic

发布时间:2014-09-05 16:04:58作者:知识屋


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.zhishiwu.com  
nginx.conf 配置里添加
location  /  {
  auth_basic            "Restricted";
  auth_basic_user_file  htpasswd;
}
 
这里要保证 htpasswd 这个文件可以被找到。
一把保存至 /usr/local/nginx/conf/htpasswd
这个文本文件就是记录  用户名:加密密码
 
3. reload nginx
 
 
作者 stallman
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜