首页 > 代码库 > nginx和apache 加密
nginx和apache 加密
nginx:
location / {
root html;
index index.html;
auth_basic "nginx";//认证提示信息
auth_basic_user_file password;//认证的文件包含username和password
}
cd /usr/local/mybin/nginx/conf/
htpasswd -c password xiaoming
输入密码
再次输入密码
<Directory "/var/www/html">
Option Indexs FollowSymLinks
AllowOverride None
AuthType Basic
AuthName "apache" #提示信息和nginx的auth_basic 一样
AuthUserFile /var/www/html/html.passwd #认证的文件和nginx的auth_basic_user_file
Require user tom #这里填写认证文件里的用户名
<Directory>
cd /var/www/html/
htpasswd -c html.passwd tom
输入密码
再次输入密码
本文出自 “12208412” 博客,请务必保留此出处http://12218412.blog.51cto.com/12208412/1876261
nginx和apache 加密
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。