Remote sessions disconnected after every ~60 seconds #385
-
Server: In the browser noticed that the page refreshes every ~60 seconds. Is that normal? Is it supposed to be like this? p.s. find nginx log error: upstream timed out (110: Connection timed out) while reading response header from upstream |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
The solution is found. When you apply proxying to another server, you need to add directives to the nginx (remotely) server configuration file. proxy_send_timeout 150; |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
The solution is found. When you apply proxying to another server, you need to add directives to the nginx (remotely) server configuration file.
In each block:
location /
location /_blazor
location /AgentHub
location /ViewerHub
location /CasterHub
proxy_send_timeout 150;
proxy_read_timeout 150;