• Ruud@lemmy.worldM
    link
    fedilink
    arrow-up
    1
    ·
    1 year ago

    Hmm , when I replace this:

    http {
      server {
        listen 80;
        server_name lemmy.world;
    
        location / {
            proxy_pass http://lemmy-ui:1234;
            proxy_set_header Host $host;
        }
    }
    

    with this:

    http {
      server {
        listen 80;
        server_name lemmy.world;
    
        location / {
            return 301 https://$host$request_uri;
        }
    }
    

    it breaks, gives 502 when visiting the site…

    ideas? (I’m not that much into nginx…)

    • Tom@lemmy.world
      link
      fedilink
      arrow-up
      2
      arrow-down
      1
      ·
      1 year ago

      Can we get an error log? If no, are you seeing any timeouts in there?