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.
This commit is contained in:
Rasmus Wejlgaard 2026-03-29 11:29:06 +01:00 committed by GitHub
parent 99cc0d6967
commit 8dffd3732b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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"}