目前我有以下内容的“ports.conf”:
NameVirtualHost *:80
Listen 80
<IfModule mod_ssl.c>
Listen 443
NameVirtualHost *:443
</IfModule>
<IfModule mod_gnutls.c>
Listen 443
</IfModule>
因此,要添加 IPv6,我必须将其更改为:
NameVirtualHost 91.64.99.215:80
Listen 91.64.99.215:80
NameVirtualHost [2a01:4f8:140:54e4::3]:80
Listen [2a01:4f8:140:54e4::3]:80
<IfModule mod_ssl.c>
Listen 443
NameVirtualHost 91.64.99.215:443
NameVirtualHost [2a01:4f8:140:54e4::3]:443
</IfModule>
<IfModule mod_gnutls.c>
Listen 91.64.99.215:443
Listen [2a01:4f8:140:54e4::3]:443
</IfModule>
这个对吗?
我担心的是,如果我这样做,所有虚拟主机都设置为
<VirtualHost *:80>
ServerName www.domain.tld
ServerAlias domain.tld
DocumentRoot /www/domain
</VirtualHost>
会发狂。如果不是这种情况,做
<VirtualHost *:80 [*]:80>
ServerName www.domain.tld
ServerAlias domain.tld
DocumentRoot /www/domain
</VirtualHost>
还应该通过 IPv6 使域可用吗?
我在这里有点困惑,无法充分利用现有的“示例”任何帮助将不胜感激。
您只需将
Listen
指令更改为:而你的
保持不变。
注意:
netstat -tln
将仅在tcp6
/上显示 apache 侦听:::80
;这是正常的(它也会像以前一样响应 IPv4)