infrastructure/nixos/jackett.nix
2024-01-11 22:01:58 -08:00

11 lines
201 B
Nix

_: {
services = {
jackett = {
enable = true;
};
nginx.virtualHosts."jackett.gensokyo.zone" = {
locations."/".proxyPass = "http://localhost:9117/";
};
};
# Port 9117
}