> It does not seem port 443 is accepting.  How do you know you have apache
> listening on 443 if s_client connot connect to it?

s_client will connect to the server defined in Section 1 of the httpd.conf

ServerName      www.global.com
DocumentRoot    /doc/root

<VirtualHost www.global.com:443>
# use defaults from section 1
SSLEngine on
SSLCertificateFile    /opt/apache/conf/ssl.crt/global_com.crt
SSLCertificateKeyFile /opt/apache/conf/ssl.key/global_com.key
SSLCACertificatePath    /opt/apache/conf/ssl.crt
SSLVerifyClient none 
SSLVerifyDepth  10
SSLOptions +FakeBasicAuth
SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
</VirtualHost>

<VirtualHost www.global.net:443>
ServerName www.global.net
DocumentRoot /global/net
AddHandler cgi-script .cgi
SSLEngine on
SSLCACertificatePath  /opt/apache/conf/ssl.crt
SSLCertificateFile    /opt/apache/conf/ssl.crt/global_net.crt
SSLCertificateKeyFile /opt/apache/conf/ssl.key/global_net.key
SSLVerifyClient none 
SSLVerifyDepth 10
SSLOptions +FakeBasicAuth
SSLLog  /global/net/logs/ssl.log
SSLLogLevel info
</VirtualHost>


s_client will connect to www.global.com. no problem
s_client will hang when trying to connect to www.global.net

So to my understanding the server is answering on 443.
But for some reason it is not answering when I use a different
ServerName/DocumentRoot. ie, when I'm overriding the section 1 defaults.

perplexed

Kev

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

Reply via email to