nginx做正向代理https遇到SSL_do_handshake()握手失败
时间:2019-10-15 20:47:44
收藏:0
阅读:1643
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; ... ... }
原文:https://www.cnblogs.com/xiaojf/p/11680031.html
评论(0)