Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Apache mod_ssl hanging browser

Status
Not open for further replies.

plextech

Technical User
Jun 27, 2002
1
US
Was wondering if anyone can help me? I believe I have mod_ssl loaded correctly and configurd correctly, but I get the following situation when I access my SSL site.

secure.xxxdemo.com - resolves to proper xxx.xxx.xxx.9
- < it just hangs on site, but says host contacted...
- this is what the SSL.log says: It looks like it confgures ok for secure.xxxdemo.com:443

SSL.log:
[26/Jun/2002 22:01:53 02320] [info] Init: Configuring server secure.xxxdemo.com:443 for SSL protocol
[26/Jun/2002 22:01:53 02404] [info] Server: Apache/1.3.26, Interface: mod_ssl/2.8.9, Library: OpenSSL/0.9.6d
[26/Jun/2002 22:01:53 02404] [warn] You are using mod_ssl under Win32. This combination is *NOT* officially supported. Use it at your own risk!
[26/Jun/2002 22:01:53 02404] [info] Init: 1st startup round (still not detached)
[26/Jun/2002 22:01:53 02404] [info] Init: Initializing OpenSSL library
[26/Jun/2002 22:01:53 02404] [info] Init: Loading certificate & private key of SSL-aware server secure.xxxdemo.com:443
[26/Jun/2002 22:01:53 02404] [info] Init: Seeding PRNG with 136 bytes of entropy
[26/Jun/2002 22:01:53 02404] [info] Init: Generating temporary RSA private keys (512/1024 bits)
[26/Jun/2002 22:01:53 02404] [info] Init: Configuring temporary DH parameters (512/1024 bits)
[26/Jun/2002 22:01:53 02404] [info] Init: Seeding PRNG with 136 bytes of entropy
[26/Jun/2002 22:01:53 02404] [info] Init: Configuring temporary RSA private keys (512/1024 bits)
[26/Jun/2002 22:01:53 02404] [info] Init: Configuring temporary DH parameters (512/1024 bits)
[26/Jun/2002 22:01:53 02404] [info] Init: Initializing (virtual) servers for SSL
[26/Jun/2002 22:01:53 02404] [info] Init: Configuring server secure.xxxdemo.com:443 for SSL protocol

*** this is what is in log after I try to use browser to connect

[26/Jun/2002 22:02:02 02404] [info] Connection to child 0 established (server secure.xxxdemo.com:443, client 205.229.222.70)
[26/Jun/2002 22:02:02 02404] [info] Seeding PRNG with 0 bytes of entropy

My current configuration is:

Windows 2000 SP2
Apache 1.3.26
mod_ssl 2.8.9
openssl .0.9.6d

my configuration in httpd.conf is:

SSLMutex sem
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
SSLSessionCache none
SSLLog logs/SSL.log
SSLLoglevel info
NameVirtualHost xxx.xxx.xxx.9:443

<VirtualHost xxx.xxx.xxx.9:443>
Port 443
ServerName secure.xxxdemo.com
DocumentRoot d:/data/website
ErrorLog logs/secureaeb-error_log
CustomLog logs/secureaeb-access_log combined
SSLEngine On
SSLCertificateFile conf/ssl/secure.xxxdemo.com.cert
SSLCertificateKeyFile conf/ssl/secure.xxxdemo.com.key
</VirtualHost>

Any help would be appreciated.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top