on [SOLVED] How to configure Lemmy instance nginx proxy for websockets? · c/selfhosted · 1 pts · 3yYou 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.
You can try add these to your nginx conf inside
location / {:like this:
I launched my instance last weekend and this was my issue as too.