From f8dbddbb322f6b0e7e88b1b2d34ec19c08fef81e Mon Sep 17 00:00:00 2001 From: mindesbunister Date: Thu, 26 Jun 2025 14:49:34 +0200 Subject: [PATCH] coturn server fuer anrufe installiert --- compose_files/coturn.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 compose_files/coturn.yml diff --git a/compose_files/coturn.yml b/compose_files/coturn.yml new file mode 100644 index 0000000..2c99ee2 --- /dev/null +++ b/compose_files/coturn.yml @@ -0,0 +1,21 @@ +services: + coturn: + image: instrumentisto/coturn + container_name: coturn + restart: unless-stopped + ports: + - "3478:3478" # STUN/TURN TCP + - "3478:3478/udp" # STUN/TURN UDP + - "5349:5349" # TLS (optional) + - "5349:5349/udp" + command: + - -n + - --log-file=stdout + - --lt-cred-mech + - --use-auth-secret + - --static-auth-secret=87203923adb2bfa8efd6134c51bc564d24212af164e3fe1ad73d141cfd5ccef6 + - --realm=matrix.egonetix.de + - --no-cli + - --no-tcp-relay + - --no-multicast-peers +