diff --git a/services/communication/livekit-config.yaml b/services/communication/livekit-config.yaml index 83be194..364132a 100644 --- a/services/communication/livekit-config.yaml +++ b/services/communication/livekit-config.yaml @@ -7,8 +7,8 @@ data: livekit.yaml: | port: 7880 rtc: - udp_port: 443 - tcp_port: 0 + udp_port: 7882 + tcp_port: 7881 use_external_ip: true turn_servers: - host: turn.live.bstein.dev diff --git a/services/communication/livekit.yaml b/services/communication/livekit.yaml index 4ec5b2d..6df4acd 100644 --- a/services/communication/livekit.yaml +++ b/services/communication/livekit.yaml @@ -65,8 +65,11 @@ spec: - containerPort: 7880 name: http protocol: TCP - - containerPort: 443 - name: udp-media + - containerPort: 7881 + name: rtc-tcp + protocol: TCP + - containerPort: 7882 + name: rtc-udp protocol: UDP volumeMounts: - name: config @@ -107,7 +110,11 @@ spec: port: 7880 targetPort: 7880 protocol: TCP - - name: udp-media - port: 443 - targetPort: 443 + - name: rtc-tcp + port: 7881 + targetPort: 7881 + protocol: TCP + - name: rtc-udp + port: 7882 + targetPort: 7882 protocol: UDP