为什么我的 /var/www 中的开发网站无法加载?

为什么我的 /var/www 中的开发网站无法加载?

我在装有 ubuntu 的虚拟机上配置了一个 apache2 服务器。这一直有效,但从昨天开始我的网站突然无法加载了。我认为这与我们的新网络路由器有关,但我不确定,因为它在前几周一直有效。我配置了这些东西:

000-default.conf

<VirtualHost *:80>
        ServerName hello.int
        ServerAdmin [email protected]
        DocumentRoot /var/www/hello.int/public
        ErrorLog ${APACHE_LOG_DIR}/error.log
        CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>

/etc/apache2/apache.conf

<Directory /var/www/>
        Options Indexes FollowSymLinks
        AllowOverride All
        Require all granted
</Directory>

hostsWindows 中的文件:

127.0.0.1 localhost
10.0.2.15 hello.int

共享地图设置和虚拟框网络设置:

在此处输入图片描述 在此处输入图片描述

当我浏览时我看到的是localhost:8080

在此处输入图片描述

当我浏览hello.int

ERR_CONNECTION_TIMED_OUT

当我浏览127.0.0.1

ERR_CONNECTION_REFUSED

相关内容