You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Reverse proxies like Nginx will close connections (including websockets) after certain application-level inactivity (i.e. tcp keepalive is not good enough).
In order to avoid this we should add a ping/pong keepalive protocol to the control websocket.
WebSockets are still affected by proxy_read_timeout which defaults to 60 seconds. This means that if you have an application using WebSockets but not sending any data more than once per 60 seconds you either need to increase the timeout or implement a ping message to keep the connection alive.
Reverse proxies like Nginx will close connections (including websockets) after certain application-level inactivity (i.e. tcp keepalive is not good enough).
In order to avoid this we should add a ping/pong keepalive protocol to the control websocket.
References:
The text was updated successfully, but these errors were encountered: