From a7eca5ca2102d54035a25efd3ca651cfdc6c3a94 Mon Sep 17 00:00:00 2001 From: Alexandre DEVELY <12896316+alexandredevely@users.noreply.github.com> Date: Wed, 20 Nov 2024 11:07:11 +0100 Subject: [PATCH] use default timeout --- etc/nginx/route.conf | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/etc/nginx/route.conf b/etc/nginx/route.conf index 0389018..f85116a 100644 --- a/etc/nginx/route.conf +++ b/etc/nginx/route.conf @@ -20,8 +20,8 @@ if ($arg_jwt_token) { set $jwt_token $arg_jwt_token; } - proxy_read_timeout 3600s; # one hour - proxy_send_timeout 3600s; # one hour + # proxy_read_timeout 3600s; # one hour + # proxy_send_timeout 3600s; # one hour include ws.conf; proxy_pass http://$target:$ws_tcp_bridge_tcp_port/; } @@ -44,8 +44,8 @@ if ($arg_jwt_token) { set $jwt_token $arg_jwt_token; } - proxy_read_timeout 3600s; # one hour - proxy_send_timeout 3600s; # one hour + # proxy_read_timeout 3600s; # one hour + # proxy_send_timeout 3600s; # one hour include ws.conf; proxy_pass http://$target:$signalling_service_tcp_port/; } @@ -186,7 +186,7 @@ location /broadcast { # proxy_read_timeout 600; - proxy_read_timeout 1800s; # half one hour + # proxy_read_timeout 1800s; # half one hour set $jwt_token $args; if ($arg_jwt_token) { set $jwt_token $arg_jwt_token;