This commit is contained in:
mjallen18
2025-06-17 12:45:00 -05:00
parent b4df8c3c0a
commit e381318c18

View File

@@ -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 ];
};
};
};