Hey there, I set up a Wefwef-Instance behind a ngninx reverse proxy. The server responds fine, yet when I call it through a forwarded domain, Wefwef will only return the HTTP-header (“wefwef for lemmy”) and a black page. Does anyone know why that would be?

URL: https://norgur.com/wef

  • Norgur@discuss.tchncs.deOP
    link
    fedilink
    English
    arrow-up
    1
    ·
    1 year ago
        #extension docker begin
        location ~ ^/wef.* {
                proxy_pass http://0.0.0.0:7914;
                proxy_set_header Host              $host;
                proxy_set_header X-Real-IP         $remote_addr;
                proxy_set_header X-Forwarded-For   $proxy_add_x_forwarded_for;
                proxy_set_header X-Forwarded-Proto $scheme;
        }
    
        #extension docker end
    

    (7914 is the external port of the container, so that’s correct)

    • rylin
      link
      fedilink
      English
      arrow-up
      2
      ·
      1 year ago

      When you go to the local IP internally does it load properly?