add `proxy_ignore_client_abort` flag to Nginx conf

The `proxy_ignore_client_abort` flag specifies whether nginx will
monitor possible connection close while waiting for an upstream
server response. If an error occurs while sending a response, the
connection will be closed regardless of the flag, much like if
there were no nginx at all.

fixes #3484
pull/3383/head
Rigel Kent 2020-12-19 20:15:13 +01:00 committed by Chocobozzz
parent 82f5527fc3
commit df7b786f09
1 changed files with 1 additions and 0 deletions

View File

@ -154,6 +154,7 @@ server {
keepalive_timeout 10s; # default is 75
resolver_timeout 10s; # default is 30
reset_timedout_connection on;
proxy_ignore_client_abort on;
tcp_nopush on; # send headers in one piece
tcp_nodelay on; # don't buffer data sent, good for small data bursts in real time