From e381318c18463363a33e8eb9624aa74476e92665 Mon Sep 17 00:00:00 2001 From: mjallen18 Date: Tue, 17 Jun 2025 12:45:00 -0500 Subject: [PATCH] fix sab --- hosts/nas/apps/arrs/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/hosts/nas/apps/arrs/default.nix b/hosts/nas/apps/arrs/default.nix index ebf0915..9f328b8 100755 --- a/hosts/nas/apps/arrs/default.nix +++ b/hosts/nas/apps/arrs/default.nix @@ -149,6 +149,7 @@ in cfg.radarr.port cfg.sonarr.port cfg.sabnzbd.port + 8080 ]; }; # Use systemd-resolved inside the container @@ -213,7 +214,7 @@ in sourcePort = cfg.sonarr.port; } { - destination = "${cfg.localAddress}:${toString cfg.sabnzbd.port}"; + destination = "${cfg.localAddress}:8080"; sourcePort = cfg.sabnzbd.port; } { @@ -227,8 +228,8 @@ in ]; }; firewall = { - allowedTCPPorts = [ cfg.radarr.port cfg.sonarr.port cfg.sabnzbd.port cfg.deluge.port cfg.jackett.port ]; - allowedUDPPorts = [ cfg.radarr.port cfg.sonarr.port cfg.sabnzbd.port cfg.deluge.port cfg.jackett.port ]; + allowedTCPPorts = [ cfg.radarr.port cfg.sonarr.port cfg.sabnzbd.port 8080 cfg.deluge.port cfg.jackett.port ]; + allowedUDPPorts = [ cfg.radarr.port cfg.sonarr.port cfg.sabnzbd.port 8080 cfg.deluge.port cfg.jackett.port ]; }; }; };