updated open ports for transmission

This commit is contained in:
Aly Raffauf 2024-03-06 22:28:48 -05:00
parent 5ef0c6610b
commit 1c3ee04906

View file

@ -1,7 +1,9 @@
{ config, pkgs, ... }:
{
# Open TCP ports for audiobookshelf, plex-server, and transmission-server.
networking.firewall.allowedTCPPorts = [ 13378 32400 9091 ];
networking.firewall.allowedTCPPorts = [ 51413 13378 32400 9091 ];
networking.firewall.allowedUDPPorts = [ 51413 ];
virtualisation = {
podman = {
enable = true;
@ -32,7 +34,7 @@
];
};
transmission-server = {
ports = ["0.0.0.0:9091:9091"];
ports = ["0.0.0.0:9091:9091" "0.0.0.0:51413:51413"];
image = "linuxserver/transmission:latest";
volumes = [
"/mnt/Media:/Media"