Nginx 超时配置,连接时间过长直接关闭连接,显示timeout
http { #每个 TCP 连接最多可以保持多长时间 keepalive_timeout 60; #客户端向服务端发送一个完整的 request header client_header_timeout 10; #客户端发送服务端发送一个完整的 request bod client_body_timeout 20; #服务端向客户端传输数据的超时时间。 send_timeout 30; #web 使用
location /cpeducloud {
#root /html/index.html;
#index index.html;
proxy_connect_timeout 4;
# 没有接收数据关闭 等候后端服务器响应时间 这个可以响应的时间
proxy_read_timeout 4; # 秒
# 没有发送数据关闭 后端服务器数据回传时间
proxy_send_timeout 60;
proxy_pass http://127.0.0.1:8080/cpeducloud;
}
}