nixos/server/nginx/sites/adguardhome.nix
Evie Litherland-Smith d2baf077e8 Add adguard home and initial nginx config
nginx currently only forwards to adguard, todo add more
2023-05-07 18:20:26 +01:00

6 lines
154 B
Nix

{
listen = [{ addr = "0.0.0.0"; port = 80; }];
serverName = "guard.xenia.me.uk";
locations = { "/" = { proxyPass = "http://localhost:3000"; }; };
}