I am setting up Apache 2.2 as a reverse proxy. My need is to have certificate authentication for every reverse-proxied url except one (https://mailserver.com/Microsoft-Server-ActiveSync) that is used for mail sync with smartphones.
Here is how I configured proxy section of Apache:
ProxyRequests Off
SSLProxyEngine On
ProxyPass / https://internalserver/
ProxyPassReverse / https://internalserver/
<Proxy https://internalserver/Microsoft-Server-ActiveSync>
SSLVerifyClient none
</Proxy>
SSLVerifyClient require
SSLVerifyDepth 10
But with this configuration Apache requests for certificate for Microsoft-Server-ActiveSync, too...Is there a way to exclude that URL from certificate request?