130,250
社区成员




一、故障
web门户采用nginx,但却发现不定期页面无法访问,报错ERR_EMPTY_RESPONSE;nginx web采用https访问。
二、分析
1)查看nginx的error日志,发现web服务异常时,有 client timed out (110: Connection timed out)……报错,重启nginx服务后web访问就恢复;
2)另外报错:SSL_do_handshake() failed (SSL: error:1408F10B:SSL routines:SSL3_GET_RECORD:wrong version number) while SSL handshaking to upstream, client:......
3)相关资料i按时,nginx默认会尝试重新使用SSL上游的SSL会话。可按如下修改尝试:
location / {
...
...
proxy_ssl_session_reuse off;
...
...
}
观察后续日志中是否继续出现SSL handshaking类日志。