I have the following configuration:
<VirtualHost *:443>
SSLVerifyClient require
SSLVerifyDepth 4
<Location />
####SSLVerifyClient require
####SSLVerifyDepth 4
Require expr %{SSL_CLIENT_I_DN_CN} in {"CLASSE-4"}
</Location>
<Location ^/myapplication/healthcheck$>
SSLVerifyClient none
</Location>
For a specific reason, I want to keep "SSLVerifyClient require " on the top of "VirtualHost" and not inside a "location" tag, because there it generate a "Certificate request" trame that we con see on wireshark tool.
But there , if will ask for a certificate even for my healthcheck location.
Is there a solution to keep "SSLVerifyClient required" on the top and exclude "healthcheck from SSLClientVerify ?
Best regards,