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 [b]ssl_client_certificate[/b] directive is not for this purpose.
Any suggestions?
Cheers
Yifan