Debian9 - 虚拟主机

Debian9 - 虚拟主机

我一定在这里遗漏了一些东西......我在这里创建了一个conf文件:

/etc/apache2/sites-available/mysite.lee.conf

其中包含:

<VirtualHost *:80>
    ServerName mysite.lee
    ServerAdmin webmaster@localhost
    DocumentRoot /var/www/mysite

    ErrorLog ${APACHE_LOG_DIR}/error_mysite.log
    CustomLog ${APACHE_LOG_DIR}/access_mysite.log combined

</VirtualHost>

然后我跑了:

a2ensite mysite.lee.conf

其次是:

systemctl reload apache2

但是,当我在浏览器中导航到 mysite.lee 时,我得到一个此网站无法打开错误。

答案1

如果您使用本地计算机并希望访问本地计算机启用的网站,您可以简单地编辑/etc/hosts此行并将其添加到文件末尾:

127.0.0.1        mysite.lee

此外,如果您在虚拟 Web 服务器上并且想要访问您的网站,则必须将新区域添加到 DNS 服务器中。我不知道你正在使用哪个 DNS 服务器,如果你给我更多信息,我可以更新我的答案......

相关内容