thorfinn

joined 1 year ago
[–] thorfinn@lemmypets.xyz 1 points 1 year ago* (last edited 1 year ago) (1 children)

You can try add these to your nginx conf inside location / {:

proxy_set_header Connection "keep-alive, Upgrade";
proxy_set_header Upgrade websocket;

like this:

location / {
         .... 
         proxy_set_header Connection "keep-alive, Upgrade";
         proxy_set_header Upgrade websocket;
}

I launched my instance last weekend and this was my issue as too.