Hi there, Is nginx possible to be a bidirection SSL load balancer? like the follwing configurations: ... upstream bi-ssl { server www.mysslserver.com:443; # This server requires client certificate } .... location / { proxy_pass https://bi-ssl; } I think there should be somewhere to set the client certificate used to hand shake with bi-ssl. But the ssl_client_certificate directby lyifan - How to...