minus-squarethorfinn@lemmypets.xyztoSelfhosted@lemmy.world•[SOLVED] How to configure Lemmy instance nginx proxy for websockets?linkfedilinkEnglisharrow-up1·edit-21 year agoYou can try add these to your nginx conf inside location / { like this: 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. linkfedilink
You can try add these to your nginx conf inside
location / {
like this: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.