"Hu, Meng P (Meng Pei)" wrote:
> 
> Hi,
> 
> i had apache 1.3.19 + mod_ssl-2.8.2 + openssl-0.9.6a installed with no
> error.
> 
> i can start up Apache by running apachectl startssl and there is no error in
> error_log file either.
> 
> But, i cannot connect to server via https with Netscape Navigator 4.7. It
> only can do http.
> 
> Please help ! There must be something important that i missed.

Did you actually define an SSL virtualhost? The server can now do HTTP
or HTTPS but you must tell it what protocol to use with each
virtualhost. You need something like:

<VirtualHost _default:443>
  SSLEngine             on
  SSLCertificateFile    /path-to-certificate-file
  SSLCertificateKeyFile /path-to-key-file
  DocumentRoot          /path-to-https-content  
</VirtualHost>

Rgds,

Owen Boyle.
______________________________________________________________________
Apache Interface to OpenSSL (mod_ssl)                   www.modssl.org
User Support Mailing List                      [EMAIL PROTECTED]
Automated List Manager                            [EMAIL PROTECTED]

Reply via email to