Hello,
I want to configure turn and stun server for video conference call with Odoo.
My coturn server is running behing a Firewal/NAT.
I have configured port forwarding.
My coturn server is deployed using Docker compose.
services:
coturn:
image: coturn/coturn
ports:
- "3478:3478"
- "3478:3478/udp"
- "5349:5349"
- "5349:5349/udp"
- "49160-49200:49160-49200/udp"
environment:
- DETECT_RELAY_IP=yes
command: >
-n
--log-file=stdout
--min-port=49160
--max-port=49200
--listening-ip=0.0.0.0
--external-ip=$(detect-external-ip)
--lt-cred-mech
--realm=
coturn.ikus-soft.com --user=myuser:mypassword
--verbose
Testing with:
Is this OK ?
Am I missing something?
P.S.: I will change the credential once everything is working...