【找一找青春】Nginx 的多站点配置

这里以配置2个站点(2个域名)为例,n 个站点可以相应增加调整,假设:

IP地址: 202.55.1.100
域名1 example1.com 放在 /www/example1
域名2 example2.com 放在 /www/example2

配置 nginx virtual hosting 的基本思路和步骤如下:

  • 把2个站点 example1.com,example2.com 放到 nginx 可以访问的目录 /www/
  • 给每个站点分别创建一个 nginx 配置文件example1.com.conf,example2.com.conf, 并把配置文件放到 /etc/nginx/vhosts/
  • 然后在 /etc/nginx.conf 里面加一句 include 把步骤2创建的配置文件全部包含进来(用 * 号)
  • 重启 nginx

具体过程

下面是具体的配置过程:
1、在 /etc/nginx 下创建 vhosts 目录

mkdir/etc/nginx/vhosts

2、在 /etc/nginx/vhosts/ 里创建一个名字为example1.com.conf 的文件,把以下内容拷进去

server { 
listen 80;#监听的端口号 
server_name websuitA.com;#域名 
#access_log logs/host.access.log main; 
location / { 
root X:/wnmp/www/websuitA;#站点的路径 
index default.php index.php index.htmlindex.htm; 
#站点的rewrite在这里写 
rewrite ^/(\w+)\.html$ /$1.php; 
rewrite ^/(\w+)/(\w+)$ /$1/$2.php; 
} 
#错误页的配置 
error_page 404 /error.html; 
error_page 500 502 503 504 /50x.html; 
location = /50x.html { 
root html; 
} 
# pass the PHP scripts to FastCGI serverlistening on 127.0.0.1:9000 
location ~ \.php$ { 
root X:/wnmp/www/websuitA; 
fastcgi_pass 127.0.0.1:9000; 
fastcgi_index index.php; 
fastcgi_param SCRIPT_FILENAME$document_root$fastcgi_script_name; 
include fastcgi_params; 
} 
location ~ /\.ht { 
deny all; 
} 
}

3、在 /etc/nginx/vhosts/ 里创建一个名字为example2.com.conf 的文件,把以下内容拷进去

server { 
listen 80;#监听的端口号 
server_namewebsuitB.com;#域名 
#access_loglogs/host.access.log main; 
location /{ 
root X:/wnmp/www/websuitB;#站点的路径 
index default.php index.php index.html index.htm; 
#站点的rewrite在这里写 
rewrite^/(\w+)\.html$ /$1.php; 
rewrite^/(\w+)/(\w+)$ /$1/$2.php; 
} 
#错误页的配置 
error_page404 /error.html; 
error_page500 502 503 504 /50x.html; 
location= /50x.html { 
roothtml; 
} 
# pass thePHP scripts to FastCGI server listening on 127.0.0.1:9000 
location ~\.php$ { 
rootX:/wnmp/www/websuitB; 
fastcgi_pass127.0.0.1:9000; 
fastcgi_indexindex.php; 
fastcgi_paramSCRIPT_FILENAME $document_root$fastcgi_script_name; 
includefastcgi_params; 
} 
location~ /\.ht { 
denyall; 
} 
} 

4、打开 /etc/nginix.conf 文件,在相应位置加入 include 把以上2个文件包含进来

#包含所有的虚拟主机的配置文件 
include X:/wnmp/nginx/conf/vhosts_conf/*.conf; 

5、重启 Nginx

Service php-fpm reload
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值