Hi
So say I have
https://www.abc.com.au/ThisIsSecure/ << I want everything under here to force the client to have a certificate
https://www.abc.com.au/ << But I want all other access to not need a certificate and to not pop up a certificate request..
https://httpd.apache.org/docs/2.4/ssl/ssl_howto.html
apache seems to be able to do it
SSLVerifyClient none
SSLCACertificateFile "conf/ssl.crt/ca.crt"
<Location "/secure/area">
SSLVerifyClient require
SSLVerifyDepth 1
</Location>
but it seems like currently nginx can only turn it on for the whole tree
Alex