网络应用 · 2015年1月22日 0

apache添加虚拟主机

vim编辑apache的配置文件(我用的centos)

#vim /etc/httpd/conf/httpd.conf

添加以下内容

# DocumentRoot 是网站文件存放的根目录
# ServerName 是网站域名, 需要跟 DNS 指向的域名一致
#
Listen ip:8080
<VirtualHost ip:8080>
#ServerAdmin xxx@163.com
DocumentRoot /var/www/mituo
ServerName www.houzhibo.com
ErrorLog logs/error.log
CustomLog logs/access.log common
</VirtualHost>