Mediamtx + repertory instance
This commit is contained in:
parent
39420f524b
commit
a0b28b7a01
13 changed files with 470 additions and 2 deletions
|
|
@ -43,6 +43,22 @@ resource "aws_security_group" "talos" {
|
|||
self = true
|
||||
}
|
||||
|
||||
ingress {
|
||||
description = "MediaMTX RTMP ingest"
|
||||
from_port = 1935
|
||||
to_port = 1935
|
||||
protocol = "tcp"
|
||||
cidr_blocks = ["0.0.0.0/0"]
|
||||
}
|
||||
|
||||
ingress {
|
||||
description = "MediaMTX WebRTC ICE"
|
||||
from_port = 8189
|
||||
to_port = 8189
|
||||
protocol = "udp"
|
||||
cidr_blocks = ["0.0.0.0/0"]
|
||||
}
|
||||
|
||||
egress {
|
||||
from_port = 0
|
||||
to_port = 0
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue