This one kept me searching for a while... can anybody else
confirm that certain comments influence mod_ssl directives
in the virtual host section?

The following didn't work...

<VirtualHost ...>
...
SSLVerifyClient require
SSLVerifyDepth 1
# Select directory/file where CA certificates are stored (for client auth)
#SSLCACertificatePath c:\Apache\conf\ssl.crt\
SSLCACertificateFile c:\Apache\conf\ssl.crt\ca.crt</VirtualHost>

(You get the warning:
[04/Feb/1999 17:05:28] [warn]  Init: Ops, you want to request client
authentication, but no CAs are known for verification!? [Hint:
SSLCACertificate*]
in the logile)

but this one DID work...

<VirtualHost ...>
...
SSLVerifyClient require
SSLVerifyDepth 1
# Select directory/file where CA certificates are stored (for client auth)
SSLCACertificateFile c:\Apache\conf\ssl.crt\ca.crt
</VirtualHost>

(Removal of the #SSLCACertificatePath line)

Thanks for any feedback,
Christian.

--
ir. Christian Buysschaert - Technical Manager
GlobalSign nv-sa - http://www.globalsign.net

______________________________________________________________________
Apache Interface to SSLeay (mod_ssl)   www.engelschall.com/sw/mod_ssl/
Official Support Mailing List               [EMAIL PROTECTED]
Automated List Manager                       [EMAIL PROTECTED]

Reply via email to