Hello!<br><br>I want to proxy ssl connections to a backend without a certicate but it isn't working:<br><br>server {<br>  listen x.x.x.x:443;<br>  location / { <br>      proxy_pass <a href="https://y.y.y.y:443">https://y.y.y.y:443</a>;<br>
  }<br>}<br><br>I tried to use an approach like this (client auth with self generated cert), but it didn't work too:<br><br>server {<br><br>        listen x.x.x.x:443 ssl;<br><br>        ssl                  on;<br>        ssl_certificate      /etc/nginx/certs/server.crt;<br>
        ssl_certificate_key  /etc/nginx/certs/server.key;<br>        ssl_client_certificate /etc/nginx/certs/ca.crt;<br>        ssl_verify_client optional;<br><br>        location / {<br>            proxy_pass <a href="https://y.y.y.y:443">https://y.y.y.y:443</a>;<br>
<br>        }<br>}<br><br>Must I have the customer certificate to proxy this kind of request or there is another way to do this?<br><br>Tks!<br><br>Edmund<br>