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, ... }: { config, pkgs, ... }:
{ {
# Open TCP ports for audiobookshelf, plex-server, and transmission-server. # 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 = { virtualisation = {
podman = { podman = {
enable = true; enable = true;
@ -32,7 +34,7 @@
]; ];
}; };
transmission-server = { 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"; image = "linuxserver/transmission:latest";
volumes = [ volumes = [
"/mnt/Media:/Media" "/mnt/Media:/Media"