On Thu, Feb 04, 1999, Christian Buysschaert wrote:

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

Comments? Hmmm... 
 
> 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)

You're continueing the line with a backslash, so the SSLCACertificateFile
isn't recognized.  Either replacing it with "\\" or adding a space after it
should fix your problem. Or even better. Just leave the "\" away from the
line, because the path to the directory need to trailing slash at all.

                                       Ralf S. Engelschall
                                       [EMAIL PROTECTED]
                                       www.engelschall.com
______________________________________________________________________
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