nginx多站点配置实例讲解 假设有两个域名,分别是:www.web01.com和www.web02.com,均解析到了192.168.1.1这个IP上。 1、创建站点配置文件
在nginx的配置文件conf目录下创建一个专门存放VirtualHost的目录,命名为vhosts_conf,可以把虚拟目录的配置全部放在这里。
复制代码代码示例:
server { #access_log logs/host.access.log main;
location / {
#站点的rewrite在这里写
#错误页的配置
error_page 500 502 503 504 /50x.html;
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
location ~ /\.ht {
完成了站点A的配置,然后做web02的配置,如下:
复制代码代码示例:
server { #access_log logs/host.access.log main;
location / {
#站点的rewrite在这里写
#错误页的配置
location = /50x.html {
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
location ~ /\.ht {
2、在nginx的主配置文件里,包含这两个站点的配置文件。
复制代码代码示例:
#虚拟主机配置文件
(责任编辑:IT)include X:/wnmp/nginx/conf/vhosts_conf/*.conf; |