Fix: Add port 8088 to DigitalOcean cloud firewall for HLS/LLHLS
All checks were successful
Build and Push / build-all (push) Successful in 22s

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
doomtube 2026-01-06 05:24:55 -05:00
parent 264d64b72a
commit e13fffdaac

View file

@ -91,6 +91,13 @@ resource "digitalocean_firewall" "app" {
source_addresses = ["0.0.0.0/0", "::/0"] source_addresses = ["0.0.0.0/0", "::/0"]
} }
# HLS/LLHLS streaming
inbound_rule {
protocol = "tcp"
port_range = "8088"
source_addresses = ["0.0.0.0/0", "::/0"]
}
# OME API (internal, but opened for monitoring if needed) # OME API (internal, but opened for monitoring if needed)
inbound_rule { inbound_rule {
protocol = "tcp" protocol = "tcp"