Re: How to establish secure connection between NGINX <-> https upstream API

2020-03-14 Thread satscreate
Thanks Buddy, It helps, I set up a proper CA cert in pem format and it does make connections. Thanks a lot. -- Sent from: http://nginx.2469901.n2.nabble.com/ ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: How to establish secure connection between NGINX <-> https upstream API

2020-03-13 Thread Francis Daly
On Thu, Mar 12, 2020 at 10:47:40PM -0700, satscreate wrote: Hi there, > https://docs.nginx.com/nginx/admin-guide/security-controls/securing-http-traffic-upstream/# >location /upstream { >proxy_pass https://$upstream$request_uri; >proxy_ssl_certificate /etc

How to establish secure connection between NGINX <-> https upstream API

2020-03-12 Thread satscreate
Using below config, According to this, https://docs.nginx.com/nginx/admin-guide/security-controls/securing-http-traffic-upstream/# server { listen 80; server_name nginx_server_name; #... upstream dev { zone dev 64k; server backend.example.com:443; } locati