Proxy HTTPS requests to a HTTP backend with NGINX.
- by Mike
I have nginx configured to be my externally visible webserver which talks to a backend over HTTP.
The scenario I want to achieve is:
Client makes HTTPS request to nginx
nginx proxies request over HTTP to the backend
nginx receives response from backend over HTTP.
nginx passes this back to the client over HTTPS
My current config (where backend…