我的网络服务器正在处理一个巨大的文件,然后发送响应。我已经尝试了各种 nginx 超时参数,但没有运气。我已经尝试了这个问题中推荐的参数,但是,我仍然在 nginx 错误日志中看到带有错误的超时页面。
1 upstream prematurely closed connection while reading response header from upstream,client: 10.0.42.97, server:
这是我的 nginx.conf
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
access_log /var/log/nginx/access.log;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
client_header_timeout 600;
client_body_timeout 600;
send_timeout 600;
proxy_read_timeout 600;
fastcgi_buffers 8 16k;
fastcgi_buffer_size 32k;
fastcgi_read_timeout 600;
gzip on;
gzip_http_version 1.0;
gzip_comp_level 2;
gzip_proxied any;
gzip_types text/plain text/html text/css application/x-javascript text/xml application/xml application/xml+rss text/javascript application/javascript application/json;
server_names_hash_bucket_size 64;
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}
我仍然不时看到 502 Bad gateway,出现上述错误。关于什么可能是错误的任何指示?我的输入文件是一个 csv 文件,如果有帮助的话。有什么指示或建议吗?
我怎样才能解决这个问题?如何增加超时时间?