Nginx 错误错误
SSL_do_handshake() failedSSL_do_handshake() failed — SSL 握手失败
与客户端或上游服务器的 SSL/TLS 握手失败。
nginxserver
查看详情 502 Bad GatewayNginx 从上游服务器收到了无效响应。
上游服务器返回了格式错误的响应,在请求处理过程中崩溃,或连接被拒绝。
检查上游服务器是否正在运行。查看上游日志。验证 proxy_pass 配置。增大代理缓冲区大小。
# Check upstream server
curl http://localhost:3000
# Check nginx error log
tail -f /var/log/nginx/error.log
# Verify upstream is running
systemctl status your-appSSL_do_handshake() failed与客户端或上游服务器的 SSL/TLS 握手失败。
408 Request Timeout客户端未在超时时间内发送完整请求。
open() failed (13: Permission denied)Nginx 因文件系统权限不足无法读取文件。
500 Internal Server ErrorNginx 或上游应用内部发生了意外错误。
499 Client Closed Request客户端在服务器发送响应之前关闭了连接。
upstream prematurely closed connection上游服务器在发送完整响应之前关闭了连接。