mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 12:23:56 -05:00
updated open ports for transmission
This commit is contained in:
parent
5ef0c6610b
commit
1c3ee04906
|
@ -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"
|
||||||
|
|
Loading…
Reference in a new issue