Skip to content

Commit

Permalink
use default timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandredevely authored Nov 20, 2024
1 parent 206913c commit a7eca5c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions etc/nginx/route.conf
Original file line number Diff line number Diff line change
Expand Up @@ -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/;
}
Expand All @@ -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/;
}
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit a7eca5c

Please sign in to comment.