Move some ip restricted services to host config for now
This commit is contained in:
parent
8892ff6f26
commit
c7322cd28c
1 changed files with 25 additions and 0 deletions
|
@ -13,5 +13,30 @@ rec {
|
|||
target = "http://${ip}:80";
|
||||
priority = 1;
|
||||
}
|
||||
{
|
||||
name = "${hostname}-transmission";
|
||||
rule = "Host(`transmission.kallestruik.nl`) && ClientIP(`192.168.10.0/24`)";
|
||||
target = "http://${ip}:9091";
|
||||
}
|
||||
{
|
||||
name = "${hostname}-sonarr";
|
||||
rule = "Host(`sonarr.kallestruik.nl`) && ClientIP(`192.168.10.0/24`)";
|
||||
target = "http://${ip}:8989";
|
||||
}
|
||||
{
|
||||
name = "${hostname}-radarr";
|
||||
rule = "Host(`radarr.kallestruik.nl`) && ClientIP(`192.168.10.0/24`)";
|
||||
target = "http://${ip}:7878";
|
||||
}
|
||||
{
|
||||
name = "${hostname}-prowlarr";
|
||||
rule = "Host(`prowlarr.kallestruik.nl`) && ClientIP(`192.168.10.0/24`)";
|
||||
target = "http://${ip}:9696";
|
||||
}
|
||||
{
|
||||
name = "${hostname}-lidarr";
|
||||
rule = "Host(`lidarr.kallestruik.nl`) && ClientIP(`192.168.10.0/24`)";
|
||||
target = "http://${ip}:8686";
|
||||
}
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue