Ingo Zitzmann <[EMAIL PROTECTED]> writes: > Hi folks, > > I am trying to compile Apache 1.3.6, mod_ssl-2.2.7-1.3.6, > opensssl-0.9.2b using VisualC++ 6.0 and apparently it compiles the > openssl option into apache (I checked it by hiding the ssleay.dll and > the libeay32.dll) but when I call "apache -l" I don't see the mod_ssl.c. No, you can't see mod_ssl.c in the output of "apache -l". On NT mod_ssl is build as an DLL (==DSO). "apache -l" only lists the modules compiled and statically linked in apachecore.dll. Just go ahead and configure ssl. This is the ssl-related part of my httpd.conf Listen 80 Listen 443 ;; NT specific LoadModule ssl_module modules/ApacheModuleSSL.dll <IfModule mod_ssl.c> SSLMutex sem SSLSessionCache dbm:logs/ssl_gcache_data SSLSessionCacheTimeout 15 SSLLog logs/ssl.log SSLLogLevel warn <VirtualHost _default_:443> SSLEngine On SSLCertificateFile cert/server.crt SSLCertificateKeyFile cert/server.key.unsecure ServerName myserver.mydomain.dom # this is the common stuff for http and https virtual hosts # DocumentRoot, Alias and the likes Include conf/tranduc.conf </VirtualHost> </IfModule> > > Of course I can't use SSLEnable for example. I followed the > instructions in install.Win32. > > Can anybody help? > > thanx, > Ingo. > > > ______________________________________________________________________ > Apache Interface to OpenSSL (mod_ssl) www.modssl.org > User Support Mailing List [EMAIL PROTECTED] > Automated List Manager [EMAIL PROTECTED] ______________________________________________________________________ Apache Interface to OpenSSL (mod_ssl) www.modssl.org User Support Mailing List [EMAIL PROTECTED] Automated List Manager [EMAIL PROTECTED]
