Skip Navigation
[SOLVED] How to configure Lemmy instance nginx proxy for websockets?
  • 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.

  • InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)TH
    thorfinn @lemmypets.xyz
    Posts 0
    Comments 1