SSL_do_handshake() failed (SSL: error:1408F10B:SSL routines:SSL3_GET_RECORD:wrong version number) while SSL handshaking to upstream, client:......
解决方式是配置文件增加:
proxy_ssl_session_reuse off;
location / {
...
...
proxy_ssl_session_reuse off;
...
...
}
本文详细解析了SSL_do_handshake() failed错误,该错误源于SSL握手过程中遇到的版本号不匹配问题。文中提供了具体的解决方案,即在配置文件中加入proxy_ssl_session_reuse off指令,以避免上游SSL握手时出现的版本冲突。

1万+

被折叠的 条评论
为什么被折叠?



