Fix: Add port 8088 to DigitalOcean cloud firewall for HLS/LLHLS
All checks were successful
Build and Push / build-all (push) Successful in 22s
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:
parent
264d64b72a
commit
e13fffdaac
1 changed files with 7 additions and 0 deletions
|
|
@ -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"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue