feat: add coturn configurations (#143)

* feat: add coturn changes

* add turn credentials and config

* fix: fix setup_remote script and docker compose
This commit is contained in:
Abhishek 2026-02-03 13:52:50 +05:30 committed by GitHub
parent 7e438ad049
commit bf972fcfec
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 470 additions and 86 deletions

View file

@ -58,6 +58,23 @@ services:
networks:
- app-network
coturn:
image: coturn/coturn:4.8.0
container_name: coturn
restart: unless-stopped
ports:
- "3478:3478/udp" # TURN/STUN UDP
- "3478:3478/tcp" # TURN/STUN TCP
- "5349:5349/tcp" # TURNS (TLS)
- "49152-49200:49152-49200/udp" # Relay ports
volumes:
- ./config/coturn/turnserver.conf:/etc/coturn/turnserver.conf:ro
command:
- "-c"
- "/etc/coturn/turnserver.conf"
networks:
- app-network
volumes:
postgres_data:
redis_data: