Nginx+Docker cache reverse proxy - "SSL alert number 40"

I had the same problem and I have resolved it now. You can add a line to your nginx.conf file and then reload it to test if it works properly.

location /v1 {

proxy_ssl_server_name on;

}

3 Likes