sonarr: allow Tailscale net

This commit is contained in:
Giulio De Pasquale 2023-11-21 13:32:07 +01:00
parent a445dc1250
commit 304231cabc

View File

@ -9,12 +9,15 @@ in
group = "media"; group = "media";
}; };
architect.vhost.${domain} = { architect.vhost.${domain} = with config.architect.networks; {
dnsInterfaces = [ "tailscale" ]; dnsInterfaces = [ "tailscale" ];
locations."/" = { locations."/" = {
port = 8989; port = 8989;
allowLan = true; allowLan = true;
allow = [
tailscale.net
];
}; };
}; };