From af2174ee9f1c1b1cbc2658a802e1c9c9e2e08343 Mon Sep 17 00:00:00 2001 From: t3chn0m4g3 Date: Mon, 21 Feb 2022 11:43:41 +0000 Subject: [PATCH] fix websocket timeout --- docker/nginx/dist/conf/tpotweb.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/nginx/dist/conf/tpotweb.conf b/docker/nginx/dist/conf/tpotweb.conf index adcd7f95..d41a720e 100644 --- a/docker/nginx/dist/conf/tpotweb.conf +++ b/docker/nginx/dist/conf/tpotweb.conf @@ -135,6 +135,7 @@ server { } location /websocket { proxy_pass http://127.0.0.1:64299; + proxy_read_timeout 3600s; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade";