Move some ip restricted services to host config for now

This commit is contained in:
kalle 2025-04-11 17:40:30 +02:00
parent 8892ff6f26
commit c7322cd28c

View file

@ -13,5 +13,30 @@ rec {
target = "http://${ip}:80"; target = "http://${ip}:80";
priority = 1; 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";
}
]; ];
} }