TURN
This commit is contained in:
@@ -24,6 +24,8 @@ services:
|
||||
JWT_SECRET: ${JWT_SECRET:-your-secure-random-secret-key-here}
|
||||
CORS_ORIGINS: ${CORS_ORIGINS:-http://localhost,http://localhost:80,http://localhost:9090,http://localhost:5173}
|
||||
ENCRYPTION_KEY: ${ENCRYPTION_KEY:-0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef}
|
||||
TURN_URL: ${TURN_URL:-turn:${DOMAIN:-mess.khomegeneric.keenetic.pro}:3478}
|
||||
TURN_SECRET: ${TURN_SECRET:-dcf1c1827c0c520d45130e282ea26991}
|
||||
depends_on:
|
||||
- db
|
||||
ports:
|
||||
@@ -42,5 +44,25 @@ services:
|
||||
depends_on:
|
||||
- server
|
||||
|
||||
turn:
|
||||
image: coturn/coturn
|
||||
container_name: vortex-turn
|
||||
restart: always
|
||||
ports:
|
||||
- "3478:3478"
|
||||
- "3478:3478/udp"
|
||||
- "49152-49170:49152-49170/udp"
|
||||
environment:
|
||||
- DETECT_EXTERNAL_IP=yes
|
||||
command:
|
||||
- -n
|
||||
- --log-file=stdout
|
||||
- --min-port=49152
|
||||
- --max-port=49170
|
||||
- --realm=${DOMAIN:-mess.khomegeneric.keenetic.pro}
|
||||
- --static-auth-secret=${TURN_SECRET:-dcf1c1827c0c520d45130e282ea26991}
|
||||
- --no-tls
|
||||
- --no-dtls
|
||||
|
||||
volumes:
|
||||
postgres_data:
|
||||
|
||||
Reference in New Issue
Block a user