this repo has no description
31
fork

Configure Feed

Select the types of activity you want to include in your feed.

proxy logs too

Signed-off-by: Anirudh Oppiliappan <anirudh@tangled.sh>

+10 -1
+10 -1
hosts/nixery/services/nginx.nix
··· 27 27 proxy_set_header X-Forwarded-For $remote_addr; 28 28 proxy_set_header Host $host; 29 29 proxy_set_header Upgrade $http_upgrade; 30 - proxy_set_header Connection Upgrade; 30 + proxy_set_header Connection "upgrade"; 31 + ''; 32 + }; 33 + locations."/logs/" = { 34 + proxyPass = "http://localhost:6555"; 35 + extraConfig = '' 36 + proxy_set_header X-Forwarded-For $remote_addr; 37 + proxy_set_header Host $host; 38 + proxy_set_header Upgrade $http_upgrade; 39 + proxy_set_header Connection "upgrade"; 31 40 ''; 32 41 }; 33 42 };