当前位置: > Linux服务器 > nginx >

nginx配置多个站点的简单例子

时间:2014-07-04 01:33来源:linux.it.net.cn 作者:IT网

操作方法如下:
在/etc/nginx/下建一个文件夹放站点的配置文件,如example 地址是:/etc/nginx/example。
在example文件夹里建多个站点的conf文件,如:example1.conf , example2.conf。
每个conf配置文件如下,可修改server_name 和 location地址设置多个站点。
 

复制代码代码示例:

server {
        listen  80;
        server_name  jbxue.com www.it.net.cn;

        access_log  /var/www/access_itnetcn.log;

        location / {
            root   /var/www/itnetcn;
            index  index.php index.html index.htm;
        }

        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   /usr/share/nginx/html;
        }

       # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        location ~ /.php$ {
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  /var/www/it.net.cn/$fastcgi_script_name;
            include        fastcgi_params;
        }

        location ~ //.ht {
            deny  all;
        }
}

将以上内容保存为文件virtual01.conf。
然后在/etc/nginx/nginx.conf里面的http{}中加入:
 

复制代码代码示例:
include /etc/nginx/example/*.conf;   #包含进来example中的所有.conf配置文件

重启nginx:
 

复制代码代码示例:
/etc/init.d/nginx restart
(责任编辑:IT)
------分隔线----------------------------
栏目列表
推荐内容