评论

收藏

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

web服务器 web服务器 发布于:2021-08-23 11:23 | 阅读数:279 | 评论:0

配置文件:
复制代码代码如下:
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;  
   }
   }
  }
说明:
只要在模块里面新增模块;具体的根据您的实际需求去配置。

关注下面的标签,发现更多相似文章