设置nginx支持虚拟机,支持多域名多网站
浏览数:39 /
时间:2015年06月09日
编辑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/; //网站根目录
}
}
}
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。