Skip to content
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
@lucadegasperi

Description

@lucadegasperi

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;
    }

Schermata 2021-01-09 alle 19 53 09

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions