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

nginx配置多个网址

时间:2014-12-18 21:58:23      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:blog   http   ar   io   os   sp   on   文件   log   

实战Nginx与PHP(FastCGI)的安装、配置与优化:http://ixdba.blog.51cto.com/2895551/806622

Nginx配置文件详细说明:http://www.cnblogs.com/xiaogangqq123/archive/2011/03/02/1969006.html

 

由于做测试用,所以通过修改hosts文件来达到对浏览器输入不同网址输出不同地址....(语言表达不强,自己能理解)

 

hosts文件配置,将域名转接

 

127.0.0.1       localhost

139.217.2.21   www.qq.com

139.217.2.21   www.baidu.com

139.217.2.21   www.sina.com.cn

 

 修改nginx的配置文件,给这三个网址分别加入一个server,如下写三遍,修改其中一些参数即可

 

server {

        listen 80;

        server_name  qq.com www.qq.com;

        root /var/www/site1;

        index index.php index.html index.htm;

 

         location / {

 

            if (!-e $request_filename){

                rewrite ^(.*)$ /index.php?s=$1 last;

                break;

             }

        }

        location ~* \.php$ {

                fastcgi_pass unix:/var/run/php5-fpm.sock;

                fastcgi_index index.php;

                include fastcgi_params;

 

                set $path_info "" ;

                set $real_script_name $fastcgi_script_name;

                if ($fastcgi_script_name ~ "^(.+?\.php)(/.+)$" ){

                        set $real_script_name $1;

                        set $path_info $2;

                }

                fastcgi_param SCRIPT_FILENAME $document_root$real_script_name;

                fastcgi_param SCRIPT_NAME $real_script_name;

                fastcgi_param PATH_INFO $path_info;

        }

}

nginx配置多个网址

标签:blog   http   ar   io   os   sp   on   文件   log   

原文地址:http://www.cnblogs.com/sujia/p/nginx2.html

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