Web サーバーが巨大なファイルを処理してから応答を送信しています。さまざまな 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ファイルです。ポインタや推奨事項はありますか?
どうすればこれを修正できますか? タイムアウト時間を増やすにはどうすればよいですか?