kariru: init bazarr

This commit is contained in:
notohh 2023-06-16 05:06:59 -04:00
parent cfcaf33743
commit a3fd578fa9
Signed by: notohh
GPG key ID: BD47506D475EE86D
2 changed files with 16 additions and 0 deletions

View file

@ -19,4 +19,8 @@ _: {
enable = true; enable = true;
openFirewall = true; openFirewall = true;
}; };
services.bazarr = {
enable = true;
openFirewall = true;
};
} }

View file

@ -25,11 +25,23 @@ _: {
entrypoints = ["web"]; entrypoints = ["web"];
service = "prowlarr"; service = "prowlarr";
}; };
bazarr = {
rule = "Host(`bazarr.home.arpa`)";
entrypoints = ["web"];
service = "bazarr";
};
qbittorrent = {
rule = "Host(`torrent.home.arpa`)";
entrypoints = ["web"];
service = "qbittorrent";
};
}; };
services = { services = {
sonarr.loadBalancer.servers = [{url = "http://localhost:8989";}]; sonarr.loadBalancer.servers = [{url = "http://localhost:8989";}];
radarr.loadBalancer.servers = [{url = "http://localhost:7878";}]; radarr.loadBalancer.servers = [{url = "http://localhost:7878";}];
prowlarr.loadBalancer.servers = [{url = "http://localhost:9696";}]; prowlarr.loadBalancer.servers = [{url = "http://localhost:9696";}];
bazarr.loadBalancer.servers = [{url = "http://localhost:6767";}];
qbittorrent.loadBalancer.servers = [{url = "http://localhost:8080";}];
}; };
}; };
}; };