码迷,mamicode.com
首页 > Web开发 > 详细

nginx和apache 加密

时间:2016-11-24 22:20:00      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:加密 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 加密

标签:加密 nginx apache

原文地址:http://12218412.blog.51cto.com/12208412/1876261

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!