traefik: add services
All checks were successful
flake check / check (push) Successful in 4m40s
fmt check / check (push) Successful in 1m5s
All checks were successful
flake check / check (push) Successful in 4m40s
fmt check / check (push) Successful in 1m5s
This commit is contained in:
parent
112cf3877e
commit
c3163fb861
1 changed files with 12 additions and 0 deletions
|
@ -20,6 +20,16 @@ _: {
|
||||||
entryPoints = ["web"];
|
entryPoints = ["web"];
|
||||||
service = "radarr";
|
service = "radarr";
|
||||||
};
|
};
|
||||||
|
readarr = {
|
||||||
|
rule = "Host(`readarr.internal.flake.sh`)";
|
||||||
|
entryPoints = ["web"];
|
||||||
|
service = "readarr";
|
||||||
|
};
|
||||||
|
lidarr = {
|
||||||
|
rule = "Host(`lidarr.internal.flake.sh`)";
|
||||||
|
entryPoints = ["web"];
|
||||||
|
service = "lidarr";
|
||||||
|
};
|
||||||
bazarr = {
|
bazarr = {
|
||||||
rule = "Host(`bazarr.internal.flake.sh`)";
|
rule = "Host(`bazarr.internal.flake.sh`)";
|
||||||
entryPoints = ["web"];
|
entryPoints = ["web"];
|
||||||
|
@ -39,6 +49,8 @@ _: {
|
||||||
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";}];
|
||||||
|
readarr.loadBalancer.servers = [{url = "http://localhost:8787";}];
|
||||||
|
lidarr.loadBalancer.servers = [{url = "http://localhost:8686";}];
|
||||||
bazarr.loadBalancer.servers = [{url = "http://localhost:6767";}];
|
bazarr.loadBalancer.servers = [{url = "http://localhost:6767";}];
|
||||||
whisparr.loadBalancer.servers = [{url = "http://localhost:6969";}];
|
whisparr.loadBalancer.servers = [{url = "http://localhost:6969";}];
|
||||||
prowlarr.loadBalancer.servers = [{url = "http://localhost:9696";}];
|
prowlarr.loadBalancer.servers = [{url = "http://localhost:9696";}];
|
||||||
|
|
Loading…
Reference in a new issue