Apache设置000-default.conf文件

时间:2014-01-29 14:27:21

标签: apache

我确信这是一个简单的问题:

我已经搞砸了一台机器并设置了LAMP,并且IP配置为10.0.0.10。

在我的Windows机器中,我修改了hosts文件并添加了一个名为“rsywx_remote”的条目。从我的Windows机器到我的流浪汉机器的ping是可以的。从我的Windows机器加载浏览器中的“rsywx_remote”也没关系。连接没有问题。

然后我通过SSH连接到我的流浪汉机器并像这样修改了/etc/apache2/sites-enabled/000-default.conf

<VirtualHost 127.0.0.1>
        DocumentRoot "/www/rsywx/web"
        ServerName rsywx_remote
        ServerAlias rsywx_remote

        <Directory "/www/rsywx/web">
                Options FollowSymLinks Indexes
                AllowOverride All
                Order deny,allow
                Allow from 127.0.0.1
                Deny from all
                Require all granted
        </Directory>
</VirtualHost>

重新启动我的流浪Apache服务,它仍指向默认页面,而不是我预期的页面。

任何提示?

1 个答案:

答案 0 :(得分:3)

尝试:

<VirtualHost *:80>

这将听取所有地址