<VirtualHost *:443>SSLEngine OnSSLCertificateFile /etc/pki/tls/certs/wildcard.mydomain.com.crtSSLCertificateKeyFile /etc/pki/tls/private/wildcard.mydomain.com.keySSLCACertificateFile /etc/pki/tls/certs/wildcard.mydomain.com.chain.crtErrorLog /var/www/mydomain.com/logs/error.logCustomLog /var/www/mydomain.com/logs/access.log combinedProxyRequests off<Proxy balancer://cluster>
# Using valid DNS names for the members works well
BalancerMember https://ws1.mydomain.com/BalancerMember https://ws2.mydomain.com/
# Using the IP address of the members returns the certificate error given above
I would like to be able to use only the IP addresses so that I can add a variable number of BalancerMember that I could start dynamically on a cloud setup.#BalancerMember http://52.73.75.46/#BalancerMember http://52.26.53.37/ProxySet lbmethod=byrequests</Proxy><Location /balancer-manager>SetHandler balancer-manager</Location># ProxyPreserveHost OnProxyPass /balancer-manager !ProxyPass / balancer://cluster/</VirtualHost>