TL; dg; I'm not sure when it changed, but newer versions of nginx are instead of ssl_protocols ...; - your conf should be:
proxy_ssl_server_name on; proxy_ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
Source: stack overflow
===
If you were like me, you didn’t read the log files correctly and saw host=example.com . Instead of being the host sent to the beginning, this apparently means the virtual host host-as-defined-in-nginx-conf ie
(The inclusion of error_log debug; showed that the host header was set correctly.)
The log file should also contain an error, for example, "sslv3 alert failure failed."
Cory Mawhorter Feb 12 '18 at 23:40 2018-02-12 23:40
source share