感谢支持
我们一直在努力

Nginx 访问目录身份验证

假设/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 和 密码就可以访问

赞(0) 打赏
转载请注明出处:服务器评测 » Nginx 访问目录身份验证
分享到: 更多 (0)

听说打赏我的人,都进福布斯排行榜啦!

支付宝扫一扫打赏

微信扫一扫打赏