From 8dffd3732b3743903686d39755d68a404cf3bea8 Mon Sep 17 00:00:00 2001 From: "Rasmus \"Pez\" Wejlgaard" Date: Sun, 29 Mar 2026 11:29:06 +0100 Subject: [PATCH] Allow Plex port (32400/tcp) through UFW on london-b (#12) * Allow Plex port (32400/tcp) through UFW on london-b Plex needs direct access on port 32400 for remote streaming. Adds common_ufw_allowed_ports to london-b host_vars. * Add BitTorrent port (6881) to london-b UFW allowed ports Port was already manually configured in UFW, bringing it under Ansible management. --- ansible/inventory/host_vars/london-b.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ansible/inventory/host_vars/london-b.yml b/ansible/inventory/host_vars/london-b.yml index 865dc48..8855e67 100644 --- a/ansible/inventory/host_vars/london-b.yml +++ b/ansible/inventory/host_vars/london-b.yml @@ -11,3 +11,8 @@ docker_services: - miniflux - smartctl-exporter - plex-exporter + +common_ufw_allowed_ports: + - {port: 32400, proto: tcp, comment: "Plex Media Server"} + - {port: 6881, proto: tcp, comment: "BitTorrent"} + - {port: 6881, proto: udp, comment: "BitTorrent"}