配置 2 个虚拟主机后 Apache 失败

配置 2 个虚拟主机后 Apache 失败

更改配置后,Apache 不会重新启动。

错误:(98)地址已在使用中:AH00072:make_sock:无法绑定到地址 [::]:80

文件:/etc/apache2/sites-enabled/000-default.conf:

Listen 80
<VirtualHost *:80>
    DocumentRoot /var/www/html
    ServerName sladie.myserver.com

    # Other directives here
</VirtualHost>

<VirtualHost *:80>
    DocumentRoot /var/www/html/mydomain.com
    ServerName www.mydomain.com

    # Other directives here
</VirtualHost>

从以下位置获取此配置Apache 文档

知道为什么这不起作用吗?

答案1

如果你使用的是 Debian,则不需要Listen 80在虚拟主机中指定,因为它已在

/etc/apache2/ports.conf:9:Listen 80

相关内容