欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

nginx 虚拟主机设置实例(多网站配置)

程序员文章站 2024-01-03 17:46:04
配置文件:复制代码 代码如下:    http {       server { ...

配置文件:

复制代码 代码如下:

    http { 
     server { 
     listen          80; 
     server_name     www.domain1.com; 
     access_log      logs/domain1.access.log main; 
     location / { 
     index index.html; 
     root  /var/www/domain1.com/htdocs; 
     } 
     } 

     server { 
     listen          80; 
     server_name     www.domain2.com; 
     access_log      logs/domain2.access.log main; 
     location / { 
     index index.html; 
     root  /var/www/domain2.com/htdocs; 
     }
     }
    }

说明:
只要在模块里面新增模块;具体的根据您的实际需求去配置。

上一篇:

下一篇: