Prepare SSL for turn

This commit is contained in:
Nico Schottelius 2023-10-13 15:32:08 +02:00
commit e283ddc1c6
19 changed files with 589 additions and 6 deletions

View file

@ -0,0 +1,41 @@
version: '3.8'
services:
coturn:
image: coturn/coturn:latest
restart: unless-stopped
# environment:
# - HOSTNAME=${hostname}
# - LISTENPORT=${listenport}
# - TLSPORT=${tlsport}
# - MINPORT=${minport}
# - MAXPORT=${maxport}
# - AUTHSECRET=${authsecret}
ports:
# STUN/TURN
- "3478:3478"
- "3478:3478/udp"
- "3479:3479"
- "3479:3479/udp"
- "80:80"
- "80:80/udp"
## STUN/TURN SSL
- "5349:5349"
- "5349:5349/udp"
- "5350:5350"
- "5350:5350/udp"
- "443:443"
- "443:443/udp"
- "49152-49252:49152-49252"
- "49152-49252:49152-49252/udp"
# Relay Ports
- "49152-65535:49152-65535"
- "49152-65535:49152-65535/udp"
volumes:
- ./turnserver.conf:/etc/turnserver.conf
- ./coturn/privkey.pem:/etc/ssl/private/privkey.pem:ro
- ./coturn/cert.pem:/etc/ssl/certs/cert.pem:ro
network_mode: "host"
# command: sh -c "/etc/turnserver.conf.sh"
# entrypoint: sh -c "docker-entrypoint.sh && /etc/turnserver.conf.sh && chmod -R 777 /etc/turnsever.conf"
# depends_on:
# - nginx

View file

@ -0,0 +1,16 @@
realm=turn.corp-
no-tcp-relay
listening-ip=0.0.0.0
listening-port=3478
min-port=49152
max-port=65535
log-file=stdout
verbose
pidfile=/var/tmp/turnserver.pid
use-auth-secret
static-auth-secret=ihaaCac6Oow3ohzuvequ6esoo9eegheex
# tls-listening-port=5349
# pkey=/etc/ssl/private/privkey.pem
# cert=/etc/ssl/certs/cert.pem