Hi, I have some apps that need to mimic an Apache httpd behavior on client certificate verification: require certificate only on some paths.
Apache does this implementing SSL renegotiation as briefly explained here[1]. Of couse I can `mode tcp` proxy to an Apache instance to do that for me but my topology would be simplified if I could implement SSL renegotiation on HAProxy as soon as I can fetch the path sample. Is there a way to accomplish this without using Apache httpd? ~jm [1] http://httpd.apache.org/docs/2.4/mod/mod_ssl.html#sslverifyclient

