首页  >  文章  >  运维  >  nginx多网站怎么配置

nginx多网站怎么配置

WBOY
WBOY转载
2023-05-12 14:04:061697浏览

配置文件:

代码如下:

    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; 
     }
     }
    }

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

以上是nginx多网站怎么配置的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文转载于:yisu.com。如有侵权,请联系admin@php.cn删除