Galène videoconferencing server discussion list archives
 help / color / mirror / Atom feed
* [Galene] Websocket close 1006 (abnormal closure): unexpected EOF
@ 2021-01-05 10:56 Jeroen van Veen
  2021-01-05 14:42 ` [Galene] " Juliusz Chroboczek
  0 siblings, 1 reply; 10+ messages in thread
From: Jeroen van Veen @ 2021-01-05 10:56 UTC (permalink / raw)
  To: galene

[-- Attachment #1: Type: text/plain, Size: 1337 bytes --]

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

}

[-- Attachment #2: Type: text/html, Size: 5084 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2021-01-08 16:03 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-05 10:56 [Galene] Websocket close 1006 (abnormal closure): unexpected EOF Jeroen van Veen
2021-01-05 14:42 ` [Galene] " Juliusz Chroboczek
2021-01-05 14:52   ` Toke Høiland-Jørgensen
2021-01-05 18:16     ` Jeroen van Veen
2021-01-05 18:44     ` Michael Ströder
2021-01-05 21:49       ` Toke Høiland-Jørgensen
2021-01-08 13:19       ` Juliusz Chroboczek
2021-01-08 14:24         ` Michael Ströder
2021-01-08 14:58           ` Juliusz Chroboczek
2021-01-08 16:03             ` Michael Ströder

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox