nixos/server/nginx/sites/adguardhome.nix

6 lines
154 B
Nix
Raw Normal View History

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