From d34650976ae8d5ca2cad56cc45c529d79864a0f4 Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Tue, 27 Sep 2016 12:37:19 +0200 Subject: [PATCH] Set the proxy_read_timeout for the builder web socket to be much higher We rarely send data from the build manager to the builder, so this should make sure nginx doesn't accidentally kill the connection Fixes #1782 --- conf/nginx/server-base.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/conf/nginx/server-base.conf b/conf/nginx/server-base.conf index d43258221..985e04a7b 100644 --- a/conf/nginx/server-base.conf +++ b/conf/nginx/server-base.conf @@ -127,4 +127,5 @@ location ~ ^/b1/socket(/?)(.*) { proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; + proxy_read_timeout 2000; }