InEnduringGrowStrong@sh.itjust.works

  • 0 Posts
  • 24 Comments
Joined 1 year ago
cake
Cake day: June 22nd, 2023

help-circle










  • It might also be a problem with your plumbing vents.
    Once in a blue moon, the vent on my roof gets buried in snow.
    It usually thaws quick enough because there’s a bit of warm inside air leaking up, but if we get lots of snow at once, sometimes it happens.

    If the vent is plugged and air can’t get in from the vent to allow water out l, it will either start to go uhhh… glug-glug, or sometimes that just siphons one of the other traps to allow air in that way, which then also allows smelly air through there.
    You’re likely to not notice the gluglug or the siphoning of another trap happening elsewhere when you flush the toilet.
    I’m not a plumber, but that’d be my guess.





  • in nginx:

    server {
    ...
    location / {
        ...
        proxy_pass https://redacted.......;
        proxy_pass_request_headers on;
        proxy_pass_header   Set-Cookie;
        proxy_set_header HOST $host;
        proxy_set_header Referer $http_referer;
        proxy_set_header X-Forwarded-Proto $scheme;
    
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-Host $server_name;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    ...
      }
    }
    

    I think the was a trusted proxy setting in owncloud itself that needed to be set too, or maybe I’m thinking of another service.