连接被重置

我最近在我的客户端Web服务器上设置了一个子域名。 这是虚拟主机设置:

Listen *:80 #primary domain <VirtualHost *:80> # rails public folder DocumentRoot /u1/thisdomain.com/public ServerName thisdomain.com RailsEnv production </VirtualHost> #my subdomain <VirtualHost *> ServerName dev.thisdomain.com DocumentRoot /u1/dev.thisdomain.com/public </VirtualHost> 

在进行configurationtesting时,我没有得到任何apacheconfiguration错误。 我优雅地重新启动Apache。 我在子域文档根中投入了一个基本的index.html。

现在,当我尝试访问子域时,我得到:

在Chrome中:

 The webpage is not available. Error 101 (net::ERR_CONNECTION_RESET): Unknown error. 

在Firefox中:

 The connection was reset The connection to the server was reset while the page was loading. *The site could be temporarily unavailable or too busy. Try again in a few moments. *If you are unable to load any pages, check your computer's network connection. *If your computer or network is protected by a firewall or proxy, make sure that Firefox is permitted to access the Web. 

我可以访问正常thisdomain.com没有问题和任何其他网站没有问题。 我没有任何代理人。 没有特殊的networking连接设置。 只是一个普通的电缆调制解调器与我的有线ISP

我的子域文档根与普通域文档根具有相同的用户和组所有权(以及其子组)。

此外,我没有看到任何东西出现在错误或访问日志。

我应该从哪里开始在这里确定问题?

thisdomain.comdev.thisdomain.comparsing到DNS中相同的IP地址?

另外, NameVirtualHost地址应该与两个VirtualHost地址匹配,即:

 NameVirtualHost *:80 <VirtualHost *:80> ServerName thisdomain.com # ... </VirtualHost> <VirtualHost *:80> ServerName dev.thisdomain.com # ... </VirtualHost>