From b2151858dad260b637f94eb03b4369e886dbf2b2 Mon Sep 17 00:00:00 2001 From: directlx Date: Wed, 4 Feb 2026 09:25:46 -0500 Subject: [PATCH] Add Pi-hole host_vars for firewall ports Allow required ports for Pi-hole: - 22/tcp (SSH) - 53/tcp, 53/udp (DNS) - 80/tcp (Web admin) - 443/tcp (HTTPS) Co-Authored-By: Claude Opus 4.5 --- host_vars/.gitkeep | 0 host_vars/pihole.yml | 9 +++++++++ 2 files changed, 9 insertions(+) delete mode 100644 host_vars/.gitkeep create mode 100644 host_vars/pihole.yml diff --git a/host_vars/.gitkeep b/host_vars/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/host_vars/pihole.yml b/host_vars/pihole.yml new file mode 100644 index 0000000..d65e2b4 --- /dev/null +++ b/host_vars/pihole.yml @@ -0,0 +1,9 @@ +--- +# Pi-hole specific variables + +common_firewall_allowed_ports: + - "22/tcp" # SSH + - "53/tcp" # DNS + - "53/udp" # DNS + - "80/tcp" # Web admin + - "443/tcp" # HTTPS (optional)