From 264d64b72afd2589f657fbc1b4234ccf4d7389ec Mon Sep 17 00:00:00 2001 From: doomtube Date: Tue, 6 Jan 2026 05:22:16 -0500 Subject: [PATCH] Fix: Add port 8088 to firewall for HLS/LLHLS streaming MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- terraform/modules/app_server/cloud-init.yaml.tpl | 1 + 1 file changed, 1 insertion(+) diff --git a/terraform/modules/app_server/cloud-init.yaml.tpl b/terraform/modules/app_server/cloud-init.yaml.tpl index 8c607b8..1e8dcb7 100644 --- a/terraform/modules/app_server/cloud-init.yaml.tpl +++ b/terraform/modules/app_server/cloud-init.yaml.tpl @@ -88,6 +88,7 @@ write_files: ufw allow in 3333/tcp comment 'WebRTC TCP' ufw allow in 3333/udp comment 'WebRTC UDP' ufw allow in 3334/tcp comment 'WebRTC TCP fallback' + ufw allow in 8088/tcp comment 'HLS/LLHLS streaming' # Inbound: VPC traffic (includes system SSH) ufw allow in from ${vpc_ip_range} comment 'VPC internal'