Reverse proxy on windows using docker - nginx is not forwarding https to IIS Reverse proxy on windows using docker - nginx is not forwarding https to IIS docker docker

Reverse proxy on windows using docker - nginx is not forwarding https to IIS


Are you able to curl the IIS URL from the container running nginx?

exec into the nginx container using ssh then:-

https://[my domain or IP address]


Just as I thought. As the certificate you have installed in your IIS contianer is not trusted by the container running NGINX it will not proxy the connection. You either need to tell NGINX to not verify ssl by adding the following to your NGINX configuration.

ssl_verify_client off

Or use a trusted certificate.