This repository was archived by the owner on Feb 7, 2024. It is now read-only.
This repository was archived by the owner on Feb 7, 2024. It is now read-only.
[v2] Wrong Peak Connections. Clients not disconnecting? #654
Closed
Description
Hello, I'm running V2 beta 30 as a standalone app on laravel forge behind an Nginx proxy. The issue is the dashboard reports too many peak connections (2000+) and connections steadily rise after a weekly websockets:restart
. It looks like clients aren't actually disconnected. If I don't do a weekly websockets:restart
I get something similar to #623. My app has around 150 concurrent connections and not 2000.
Here's the nginx proxy configuration. If any more files are needed let me know.
location / {
proxy_pass http://127.0.0.1:6001;
proxy_read_timeout 60;
proxy_connect_timeout 60;
proxy_redirect off;
# Allow the use of websockets
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
Metadata
Metadata
Assignees
Labels
No labels