码迷,mamicode.com
首页 > 其他好文 > 详细

nginx给http加验证

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

标签:nginx

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加验证

标签:nginx

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

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