nginx访问认证+目目录浏览
短信预约 -IT技能 免费直播动态提醒
在实际工作中,企业中有些网站,要求使用账号和密码才能访问,如网站后台、phpMyAdmin 、Wiki 平台 等
模块ngx_http_auth_basic_module 允许使用“HTTP基本认证”协议验证用户名和密码来限制对资源的访问
模块ngx_http_auth_basic_module 下有两条指令 auth_basic 和 auth_basic_user_file
环境
Centos 6.9
wget https://mirrors.aliyun.com/epel/epel-release-latest-6.noarch.rpm
rpm -ivh epel-release-latest-6.noarch.rpm
yum intall -y nginx
yum install -y httpd-tools
htpasswd -bc /etc/nginx/conf.d/htpasswd.users username password
注意:username和password,分别对应用名和密码
创建新的配置
vi /etc/nginx/conf.d/browse.conf
内容如下:
server {
listen 81;
server_name localhost;
location / {
root /data/log/tomcat;
index index.html index.htm;
# 设置用于认证的提示字符串
auth_basic "Restricted Access";
# 设置认证的密码文件
auth_basic_user_file /etc/nginx/conf.d/htpasswd.users;
#自动显示目录
autoindex on;
#改为off后,显示出文件的大概大小,单位是kB或者MB或者GB;即人性化方式显示文件大小否则以byte显示
autoindex_exact_size off;
autoindex_localtime on;
}
}
重载配置
nginx -s reload
http://192.168.31.216:81
输入用户名和密码
效果如下:
文本参考链接:
https://www.cnblogs.com/wushuaishuai/p/9361811.html
https://blog.csdn.net/haigenwong/article/details/84477218
https://www.cnblogs.com/silent2012/p/8377837.html
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341