虚拟主机无法在ubuntu 16.04中运行

时间:2017-11-15 06:50:56

标签: apache ubuntu server virtual host

我正在使用Apache的Ubuntu 16.04服务器,我正在尝试在本地服务器(192.168.50.200)中设置2个虚拟主机。问题是我不知道如何正确设置.conf文件。我在site_available文件夹中创建了两个配置文件,使用 a2ensite 命令启用了两个配置文件。以下IP和URL包含在 etc / host 文件

192.168.50.200 test.site1.com

192.168.50.200 test.site2.com

site1.conf

<VirtualHost *:80>
    ServerAdmin webmaster@localhost
    ServerName test.site1.com/
    DocumentRoot /var/www/site1.com
    <Directory /var/www>
        Options Indexes FollowSymLinks MultiViews
        AllowOverride All
    </Directory>
    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined

</VirtualHost>

site2.conf

<VirtualHost *:80>
    ServerAdmin webmaster@localhost
    ServerName test.site2.com
    DocumentRoot /var/www/site2.com
    <Directory /var/www>
        Options Indexes FollowSymLinks MultiViews
        AllowOverride All
    </Directory>
    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined

</VirtualHost>

这些配置链接位于site_enabled文件夹中。

在这些配置之后,我重新调整了apache服务器,并尝试重新启动服务器,但没有运气。

0 个答案:

没有答案