首页 > 其他 > 详细

nginx给http加验证

时间:2014-08-20 14:21:52      阅读:273      评论:0      收藏:0      [点我收藏+]

server {

        listen       80;

        server_name  localhost;



        #charset koi8-r;


        #access_log  logs/host.access.log  main;


        location / {

            root   html;

            index  index.html index.htm;


            location ~ .*\.(php|php5)?$ {

            fastcgi_pass unix:/tmp/php-cgi.sock;

            fastcgi_index index.php;

            include fastcgi.conf;

            }


            auth_basic "Authorized users only";

            auth_basic_user_file /usr/local/nginx/conf/auth.conf;

            }




/sbin/nginx -t  查看配置文件对不对

/sbin/nginx -s reload   重置配置文件

nginx给http加验证,布布扣,bubuko.com

nginx给http加验证

原文:http://1175667160.blog.51cto.com/8979146/1542446

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!