Joshua Skains <[EMAIL PROTECTED]> writes:
>
> 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.

You probably need the following 2 lines:

Listen 192.168.1.100:80
Listen 192.168.1.101:443
______________________________________________________________________
Apache Interface to OpenSSL (mod_ssl)                   www.modssl.org
User Support Mailing List                      [EMAIL PROTECTED]
Automated List Manager                            [EMAIL PROTECTED]

Reply via email to