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

nginx 访问目录身份验证

发布时间:2012-02-08 12:22:25作者:知识屋

假设/www/htdocs/ 为服务器根目录,新建test目录,当访问test目录时 需要身份验证
  
 1. # cd /etc/nginx/conf/htpassword
  
 2. /usr/bin/htpasswd -c /usr/local/nginx/conf/htpasswd/test auth_user
  
 3. # vi /etc/nginx/nginx.conf
  
      server{
  
 ***
  
 #test
         location /test {
                 auth_basic "Restricted";
                 auth_basic_user_file  /usr/local/nginx/conf/htpasswd/test;
         }
  
 ****
  
      }
  
 现在如果继续访问test/目录下的内容,就需要身份验证,输入auth_user 和 密码就可以访问
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜