I have a server with the following:
 
<VirtualHost 192.168.1.100>
        ServerName something.hello.com
        DocumentRoot /export/home/webdocs/main
        SSLDisable
</VirtualHost>
<VirtualHost 192.168.1.101:443>
        ServerName something-ssl.hello.com
        DocumentRoot /export/home/webdocs/members
        #SSLDisable
        SSLEnable
        SSLCertificateFile /usr/local/apache/conf/ssl/costello-ssl.crt
        SSLCertificateKeyFile /usr/local/apache/conf/ssl/costello-ssl.key
        SSLCACertificatePath /usr/local/apache/conf/ssl/
        SSLCACertificateFile /usr/local/apache/conf/ssl/ca-bundle.crt
</VirtualHost>
 
This seems not to work at all for SSL, but if I get rid of the port 443, and do a https://something-ssl.hello.com:80 it works fine.
 
Reasons?
 
Thanks,
JMS

Reply via email to