Nginx使用户认证

作者 : 开心源码 本文共1353个字,预计阅读时间需要4分钟 发布时间: 2022-05-11 共106人阅读

编辑配置文件

[root@host-192-168-0-2 vhost]# vim test.confserver{listen 80;server_name jenkins.centoscn.cn;index index.html index.htm index.php;root /data/wwwroot/jenkins.centoscn.cm;location /{auth_basic "Auth";auth_basic_user_file /usr/local/nginx/conf/htpasswd;}}

安装设置密码服务

[root@host-192-168-0-2 vhost]# yum install -y httpd

生成账号和密码

[root@host-192-168-0-2 vhost]# htpasswd -c /usr/local/nginx/conf/htpasswd azhenNew password: Re-type new password: Adding password for user azhen
  • 测试配置并重新加载

[root@host-192-168-0-2 vhost]# /usr/local/nginx/sbin/nginx -tnginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is oknginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful[root@host-192-168-0-2 vhost]# /usr/local/nginx/sbin/nginx -s reload

创立第二个使用户

[root@host-192-168-0-2 vhost]# htpasswd /usr/local/nginx/conf/htpasswd user

web登录

Nginx使用户认证

针对目录的使用户认证

server{listen 80;server_name jenkins.centoscn.cn;index index.html index.htm index.php;root /data/wwwroot/jenkins.centoscn.cm;location /admin/{auth_basic "Auth";auth_basic_user_file /usr/local/nginx/conf/htpasswd;}}

加载

[root@host-192-168-0-2 vhost]# /usr/local/nginx/sbin/nginx -s reload

直接访问域名不需要账号

[root@host-192-168-0-2 jenkins.centoscn.cm]# /usr/local/nginx/sbin/nginx -s reload[root@host-192-168-0-2 jenkins.centoscn.cm]# pwd/data/wwwroot/jenkins.centoscn.cm[root@host-192-168-0-2 jenkins.centoscn.cm]# lltotal 4drwxr-xr-x 2 root root 4096 Dec 22 15:24 admin

Nginx使用户认证

更多内容请浏览 www.centoscn.vip

说明
1. 本站所有资源来源于用户上传和网络,如有侵权请邮件联系站长!
2. 分享目的仅供大家学习和交流,您必须在下载后24小时内删除!
3. 不得使用于非法商业用途,不得违反国家法律。否则后果自负!
4. 本站提供的源码、模板、插件等等其他资源,都不包含技术服务请大家谅解!
5. 如有链接无法下载、失效或广告,请联系管理员处理!
6. 本站资源售价只是摆设,本站源码仅提供给会员学习使用!
7. 如遇到加密压缩包,请使用360解压,如遇到无法解压的请联系管理员
开心源码网 » Nginx使用户认证

发表回复