Hi,
We are trying to configure apache load-balancer for an IPV6 network.
What changes are required?
For that we tried modifying httpd.conf file with IPV6 addresss like [ipv6
address] (We enclosed ipv6 address in square brackets.)
but this doesn't seem to work. :(
where are we going wrong?
attaching part of httpd.conf file here-->
HTTPD.CONF file
ServerName [IPV6 addr]
# Secure (SSL/TLS) connections
#Include conf/extra/httpd-ssl.conf
#
# Note: The following must must be present to support
# starting without SSL on platforms with no /dev/random equivalent
# but a statically compiled-in mod_ssl.
#
<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>
# see http://www.modssl.org/docs/2.8/ssl_reference.html for more info
SSLMutex default
SSLRandomSeed startup builtin
SSLSessionCache none
#SSLLog logs/SSL.log
#SSLLogLevel info
# You can later change "info" to "warn" if everything is OK
<VirtualHost [IPV6 addr]:$APACHE_SERVER_HTTPS_PORT$>
SSLEngine On
SSLCertificateFile conf/ssl/default.cert
SSLCertificateKeyFile conf/ssl/default.key
#JkMount /dnddemo tomcat
#JkMount /dnddemo/* tomcat
</VirtualHost>
Any help in this regard is appreciated.
Thanks,
HTTPD user !