Ok. I have in my httpd.conf:
-------------------
Listen 80
Listen 443
<VirtualHost 1.2.3.4:80>
ServerName
www.xyz.com
DocumentRoot /home/apache/www.xyz.com
</VirtualHost>
<VirtualHost 1.2.3.5:80>
ServerName
www.abc.com
DocumentRoot /home/apache/www.abc.com
</VirtualHost>
<VirtualHost 1.2.3.4:443>
ServerName
www.xyz.com
DocumentRoot /home/apache/www.xyz.com
SSLCertificateFile /root/www.xyz.com.crt
SSLCertificateKeyFile /root/www.xyz.com.key
</VirtualHost>
<VirtualHost 1.2.3.5:443>
ServerName
www.abc.com
DocumentRoot /home/apache/www.abc.com
SSLCertificateFile /root/www.abc.com.crt
SSLCertificateKeyFile /root/www.abc.com.key
</VirtualHost>
-------------------------
Now the problem is that both sites use the
www.abc.com crt/key pair. I
can NOT figure out how to get two separate sites with two separate IPs
and two separate certificate/keys to work! I see lots of folks have
asked the question, but I do not see an answer!
Any help out there?
Brian Andrus