码迷,mamicode.com
首页 > Web开发 > 详细

设置nginx支持虚拟机,支持多域名多网站

时间:2014-12-02 22:23:22      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:http   io   ar   os   on   文件   log   html   tt   

编辑nginx.conf 文件 调整http 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.host2.com host2.com; //域名 access_log logs/host2.access.log main; //错误日志 location / { index index.php index.html;//首页索引文件 root /var/www/host2/; //网站根目录 } } }

设置nginx支持虚拟机,支持多域名多网站

标签:http   io   ar   os   on   文件   log   html   tt   

原文地址:http://www.cnblogs.com/phplhs/p/4138519.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!