Hi !

I am trying to run apache+modssl+openssl+bsafe on NT.
I was able to build the openssl libraries
and Apache.exe(with ssl module:mod_ssl)

I ran the binary "Apache.exe" and i see the apache
server listening on normal port(8080).(I see no 
error message while startup) But i dont see
the SSL-aware Apache server(port#8443) up! 
There are  no ssl related error logs in the 
logs directory !

ApacheModuleSSL.dll is installed under the module 
directory. When i run apache.exe -l to list the
compiled in modules I get this output,
 http_core.c
 mod_so.c
 mod_mime.c
 mod_access.c
 mod_auth.c
 mod_negotiation.c
 mod_include.c
 mod_autoindex.c
 mod_dir.c
 mod_cgi.c
 mod_userdir.c
 mod_alias.c
 mod_env.c
 mod_log_config.c
 mod_asis.c
 mod_imap.c
 mod_actions.c
 mod_setenvif.c
 mod_isapi.c

Should i be specifiying the ApacheModuleSSL.dll
in LoadModule in httpd.conf ? is it supported on NT ?

When i access the normal port thru browser it shows
the normal installation success page:
"The SSL/TLS-aware Apache webserver was
        successfully installed on this website
...
..
"

I have got a certificate and the location of the
cert file is correctly specified in httpd.conf. 
The error_log is clean. 

Can someone tell me where the problem could be ?
How should i proceed debugging this problem ?

Thanks
Vijay

------------------------------------------------------
httpd.conf
===========
##
## httpd.conf -- Apache HTTP server configuration file
##

#
# Based upon the NCSA server configuration files
originally by Rob McCool.
#
ServerType standalone
ServerRoot "c:\apache"
PidFile c:\apache\logs\httpd.pid

ClearModuleList
AddModule mod_env.c
AddModule mod_log_config.c
AddModule mod_mime.c
AddModule mod_negotiation.c
#AddModule mod_status.c
AddModule mod_include.c
AddModule mod_autoindex.c
AddModule mod_dir.c
AddModule mod_cgi.c
AddModule mod_asis.c
AddModule mod_imap.c
AddModule mod_actions.c
AddModule mod_userdir.c
AddModule mod_alias.c
AddModule mod_access.c
AddModule mod_auth.c
AddModule mod_so.c
AddModule mod_setenvif.c
<IfDefine SSL>
AddModule mod_ssl.c
</IfDefine>

Port 8080
<IfDefine SSL>
Listen 8080
Listen 8443
</IfDefine>

DocumentRoot "c:\apache\htdocs"

ErrorLog c:\apache\logs\error_log
LogLevel warn
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\"
\"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent
CustomLog c:\apache\logs\access_log common
ServerSignature On

<IfDefine SSL>
AddType application/x-x509-ca-cert .crt
AddType application/x-pkcs7-crl    .crl
</IfDefine>

<IfModule mod_ssl.c>
SSLPassPhraseDialog  builtin
SSLSessionCacheTimeout  300
SSLMutex  file:c:\apache\logs\ssl_mutex
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
SSLLog      c:\apache\logs\ssl_engine_log
SSLLogLevel info
</IfModule>
<IfDefine SSL>
<VirtualHost _default_:8443>

DocumentRoot "c:\apache\htdocs"
ServerName pc.xyz.com
ServerAdmin [EMAIL PROTECTED]
ErrorLog c:\apache\logs\error_log
TransferLog c:\apache\logs\access_log

#   SSL Engine Switch:
#   Enable/Disable SSL for this virtual host.
SSLEngine on

SSLCertificateFile c:\apache\conf\ssl.crt\verisign.crt
SSLCertificateKeyFile
c:\apache\conf\ssl.key\verisign.key

CustomLog c:\apache\logs\ssl_request_log \
     "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"

</VirtualHost>

</IfDefine>
__________________________________________________
Do You Yahoo!?
Talk to your friends online with Yahoo! Messenger.
http://im.yahoo.com
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
Development Mailing List                       [EMAIL PROTECTED]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to