Unverified Commit 7f6af50f authored by Kroese's avatar Kroese Committed by GitHub
Browse files

fix: Increase Websocket timeout (#353)

parent c49ac156
Loading
Loading
Loading
Loading
+7 −5
Original line number Diff line number Diff line
@@ -37,14 +37,16 @@ server {

    location /websockify {

      proxy_pass http://127.0.0.1:5700/;
      proxy_http_version 1.1;
      proxy_set_header Upgrade $http_upgrade;

      proxy_set_header Connection 'upgrade';
      proxy_read_timeout 61s;
      proxy_connect_timeout 61s;
      proxy_send_timeout 61s;
      proxy_set_header Upgrade $http_upgrade;

      proxy_buffering off;
      proxy_read_timeout 3600s;
      proxy_send_timeout 3600s;

      proxy_pass http://127.0.0.1:5700/;
    }

}