I want certain Apache directives, like SSLCACertificateFile, to be enabled in some Locations, but disabled in others. For example,
# Require client certificates for http://example.com/secure
<Location "/secure">
SSLCACertificateFile /path/to/my/file
SSLVerifyClient requried
</Location>
# Allow access to http://example.com/secure/exception without certificates
<Location "/secure/exception">
SSLCACertificateFiles none # doesn't work
SSLVerifyClient none # works
</Location>
The documentation doesn't discuss any "off" values for the SSLCACertificateFile directive, though.
– Jeff Warnica Dec 07 '12 at 23:48