您的位置:首页 > 运维架构 > Nginx

Nginx报错:upstream timed out (110: Connection timed out)

2016-09-22 13:42 781 查看
错误:2016/09/21 15:10:02 [error] 18423#0: *61221 upstream timed out (110: Connection timed out) while reading response header from upstream, client: 122.231.110.46, server: localhost, request: "POST /wzptServer/do/otherservice/queryRoadInfo?type=2 HTTP/1.1",
upstream: "http://10.17.56.11:8081/wzptServer/do/otherservice/queryRoadInfo?type=2", host: "localhost", referrer: "http://localhost/"

NGINX反向代理的超时报错,解决方法:

server {
listen       80;
server_name  localhost;

large_client_header_buffers 4 16k;
client_max_body_size 300m;
client_body_buffer_size 128k;
proxy_connect_timeout 600;
proxy_read_timeout 600;
proxy_send_timeout 600;
proxy_buffer_size 64k;
proxy_buffers   4 32k;
proxy_busy_buffers_size 64k;
proxy_temp_file_write_size 64k;

#.............................
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐