我继承了一个托管在Fedora / Apache虚拟机上的网站。该网站的DNS在Windows 2000 Server计算机上维护。
当前设置没有测试站点来在部署之前测试更改。我已将Fedora上的网站内容(位于/pub/customercenter.perceptionistinc.com)复制到新目录/pub/customercenterstaging.perceptionistinc.com。
我将此新登台网站的DNS添加到Windows服务器,指向与实际网站相同的IP地址(192.168.120.11)
在Fedora上,我更新了/etc/httpd/conf/httpd.conf文件以包含一个新的虚拟主机,如下所示:
<VirtualHost *:80>
DocumentRoot "/pub/customercenterstaging.perceptionistinc.com"
ServerName customercenterstaging.perceptionistinc.com
</VirtualHost>
当我尝试访问此站点时,我得到的是Fedora Core Test页面,该页面位于/ var / www / html /.
我不熟悉使用Apache托管。我需要做什么/重置/弹跳,以实现这个新的添加?
感谢您的帮助,
Brian
答案 0 :(得分:1)
是的,httpd.conf中的任何更改都将在apache重启后才会应用!如果是生产环境,我建议在另一台服务器上测试配置更改,以便在使用之前解决故障。
编辑:有一个选项,无需重启即可重新加载(不会中断当前客户端的连接)
/etc/init.d/httpd reload
。见this