Hi,

I've been testing with Galene a bit, but noticed that I got disconnected automatically after a while. 
It seems that mywebsocket connection is killed:


2021/01/05 11:24:22 client: websocket: close 1006 (abnormal closure): unexpected EOF

Another client had no disconnect issues at all. I'm not sure if this is a Gorilla websocket issue(https://stackoverflow.com/questions/61108552/go-websocket-error-close-1006-abnormal-closure-unexpected-eof), an unstable wifi connection at my side or whether Nginx may be an issue. Anyone?

My nginx config:

server {
    listen 443 ssl;
    server_name galene.domain.app;
    index index.html;

    access_log /var/log/nginx/galene.domain.app.access.log;
    error_log /var/log/nginx/galene.domain.app.error.log;

    location /ws {
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header Host $host;
        proxy_pass https://127.0.0.1:8443;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "Upgrade";
    }

    location / {
        proxy_pass https://127.0.0.1:8443;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "Upgrade";
    }

    ssl_certificate /etc/letsencrypt/live/galene.domain.app/fullchain.pem; # managed by Certbot
    ssl_certificate_key /etc/letsencrypt/live/galene.domain.app/privkey.pem; # managed by Certbot
}