I ran in what seems to see a case with little to no documentation. I'm trying to serve content sitting behind Apache 2.2 via HTTPS. This Apache server is listening on two IP addresses, one static assigned to the node and a second "floating" IP used by the active node of the cluster. The domain A record is pointing to this floating IP, in HTTP it's working fine. The server is setup with NameVirtualHost *:443 and the section covers the cert info and SSL requirement.
But in HTTPS I can only access the server by requesting the IP of the server, not the domain or floating IP. Which of course leads to a certificate domain mismatch and by passes the redundancy of a floating IP.
Any suggestion would be greatly appriciated.
Relevant httpd conf for this:
Listen 443
NameVirtualHost *:443
<VirtualHost *:443>
ServerName XXX
SSLEngine on
SSLProtocol -all +TLSv1 +SSLv3
SSLCipherSuite SSLv3:+HIGH:+MEDIUM
SSLCertificateFile "..."
SSLCertificateKeyFile "..."
SSLCertificateChainFile "..."
</VirtualHost>