Optimized coturn

This commit is contained in:
Kevin Veen-Birkenbach 2021-10-22 13:29:22 +02:00
parent 1074ac13aa
commit 94c792fc08
4 changed files with 27 additions and 7 deletions

View File

@ -47,7 +47,7 @@ services:
image: "nextcloud:{{nextcloud_version}}-fpm-alpine"
restart: always
logging:
driver: journald
driver: journald
volumes:
- data:/var/www/html
entrypoint: /cron.sh

View File

@ -1,8 +1,10 @@
#role docker-turn-server
optional dependencie for nextcloud talk
May this service needs to be implemented for jitis. It's directly integrated in the docker compose file of role docker-nextcloud
## see
- https://nextcloud-talk.readthedocs.io/en/latest/TURN/
- https://hub.docker.com/r/instrumentisto/coturn
- https://forum.openmediavault.org/index.php?thread/31782-docker-nextcloud-talk-plugin-and-turnserver/
- https://markus-blog.de/index.php/2020/11/20/how-to-run-nextcloud-talk-high-performance-backend-with-stun-turnserver-on-ubuntu-with-docker-compose/
- https://github.com/crazy-max/docker-nextcloud/issues/15

View File

@ -1,9 +1,18 @@
---
- name: recieve {{turn_server_domain}} certificate
command: certbot certonly --agree-tos --email {{administrator_email}} --non-interactive --webroot -w /var/lib/letsencrypt/ -d {{turn_server_domain}}
#- name: recieve {{turn_server_domain}} certificate
# command: certbot certonly --agree-tos --email {{administrator_email}} --non-interactive --webroot -w /var/lib/letsencrypt/ -d {{turn_server_domain}}
- name: "create /home/administrator/volumes/docker/turn-server/"
file:
path: "/home/administrator/volumes/docker/turn-server"
state: directory
mode: 0755
- name: configure turnserver.conf
template: src=templates/turnserver.conf.j2 dest=/home/administrator/volumes/docker/turn-server/turnserver.conf
- name: recreate turn server
command:
cmd: docker run -d --network=host --name "turn_server" instrumentisto/coturn -n --listening-port=3478 --fingerprint --use-auth-secret --static-auth-secret={{turn_server_secret}} --realm={{turn_server_domain}} --total-quota=0 --bps-capacity=0 --stale-nonce --no-multicast-peers
#lt-cred-mech # Only on coTURN below v4.5.0.8!
##no-loopback-peers # Only on coTURN below v4.5.1.0!
cmd: docker run -d -p 3478:3478 -p 3478:3478/udp --name "turn_server" -v "/home/administrator/volumes/docker/turn-server/turnserver.conf:/etc/coturn/turnserver.conf" coturn/coturn
# --mount type=tmpfs,destination=/var/lib/coturn
# -p 49152-65535:49152-65535/udp

View File

@ -0,0 +1,9 @@
listening-port=3478
fingerprint
use-auth-secret
static-auth-secret={{turn_server_secret}}
realm={{turn_server_domain}}
total-quota=100
bps-capacity=0
stale-nonce
no-multicast-peers