Hi,
since IPv6 is now supported in httpd -- :-) --, I'm trying to get my
web server to use it.
But somehow I can't find how to correctly configure VirtualHosts with
IPv6 addresses : every combination of
"IPv6_address",
"IPv6_address port", and
"[IPv6_address]:port"
in NameVirtualHost and VirtualHost directives ends up with the following
messages in the error log :
[Sat Dec 6 18:03:48 2008] [error] Cannot resolve host 2001:7a8:b093:8::5 port
80 --- ignoring!
[Sat Dec 6 18:03:48 2008] [error] Cannot resolve host 2001:7a8:b093:8::5 port
80 --- ignoring!
I've been through /usr/share/doc/html/httpd/ipv6.html, without success.
The server does listen on IPv6, but just doesn't seem to get the v6
part of the configuration that relates to VirtualHosts.
Would I be missing something?
Simon
httpd.conf------------------------------------------------------------
Listen [2001:7a8:b093:8::5]:80
[...]
NameVirtualHost [2001:7a8:b093:8::5]:80
[...]
<VirtualHost [2001:7a8:b093:8::5]:80>
[...]
</VirtualHost>
$ dig +short -x 2001:7a8:b093:8::5
orbis.dmz.castalie.net.
$
-----------------------------------------------------------------------