Re: proxy protocol over a plain tcp with ssl

2018-01-11 Thread nir
Well, seems that you need to read the manual with the right perspective... https://stackoverflow.com/questions/48211083/proxy-protocol-and-ssl Posted at Nginx Forum: https://forum.nginx.org/read.php?2,278113,278128#msg-278128 ___ nginx mailing list ngi

Re: proxy protocol over a plain tcp with ssl

2018-01-11 Thread nir
Hi Roman, I'm trying to pass the proxy protocol to my backend through Nginx when the traffic is encrypted This configuration block listen 8012; proxy_pass backend; proxy_protocol on; allows me to pass a non encrypted traffic and the proxy protocol This configuration block: listen 8012 proxy_prot

proxy protocol over a plain tcp with ssl

2018-01-11 Thread nir
I'm trying to configure nginx which is behind an haproxy to pass the proxy protocol over a plain tcp connection. It works well. When I add ssl to the equation it fails. Below is the nginx configuration block I'm using. Is it a configuration issue or might be that it's not at all possible for nginx