相关资讯
本类常用软件
-
福建农村信用社手机银行客户端下载下载量:584204
-
Windows优化大师下载量:416911
-
90美女秀(视频聊天软件)下载量:366961
-
广西农村信用社手机银行客户端下载下载量:365699
-
快播手机版下载量:325855
今天跟大家分享的是LNMP下为Nginx目录设置访问验证,希望对朋友们有所帮助!
1、创建类htpasswd文件
#wget -c soft.vpser.net/lnmp/ext/htpasswd.sh;bash htpasswd.sh
按提示输入:
用户名:test
密码:test
文件名:/usr/local/nginx/conf/access.conf
脚本会自动生成认证文件,access.conf内容如下:
#cat /usr/local/nginx/conf/access.conf
test:pwTiMmoH21rbs
2、为Nginx添加auth认证配置
下面以某域名下面的auth目录为例,在域名的server段里加上如下代码:
location ^~ /auth/ {
location ~ .*\.(php|php5)?$ {
fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_index index.php;
include fcgi.conf;
}
auth_basic "Authorized users only";
auth_basic_user_file /usr/local/nginx/conf/access.conf
}
auth_basic_user_file 为htpasswd文件的路径
重启nginx,访问http://yourdomainname/auth/ 就会提示输入用户名和密码。
热门评论
最新评论