首页 > 代码库 > 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 加密