From df7b786f09418ed3f7fdafb0d0158103ad02d08e Mon Sep 17 00:00:00 2001 From: Rigel Kent Date: Sat, 19 Dec 2020 20:15:13 +0100 Subject: 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 --- support/nginx/peertube | 1 + 1 file changed, 1 insertion(+) (limited to 'support/nginx/peertube') diff --git a/support/nginx/peertube b/support/nginx/peertube index a886fa359..fd3ff1534 100644 --- a/support/nginx/peertube +++ b/support/nginx/peertube @@ -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 -- cgit v1.2.3