#!/bin/bash # -*- indent-tabs-mode: t; tab-width: 4; -*- # This mod is part of the Mail-In-A-Box LDAP and Cloud-In-A-Box # projects # # It installs coturn - a stun/turn server needed for Nextcloud # Talk. Once setup has been run with the mod enabled, configure # Nextcloud Talk to use this host: # # STUN server: # :5349 # # TURN server: # turn: only # :5349 # secret: # TCP only # # There is no automated removal of the mod - it must be manually # removed by uninstalling coturn and removing the extra firewall # rules. Simply removing the symlink in 'local' will not uninstall # coturn. # [ -e /etc/mailinabox.conf ] && source /etc/mailinabox.conf [ -e /etc/cloudinabox.conf ] && source /etc/cloudinabox.conf source setup/functions.sh || exit 1 # load our functions create_turnserver_conf() { if [ ! -e "$STORAGE_ROOT/voip/turnserver.conf" ]; then mkdir -p "$STORAGE_ROOT/voip" cat > "$STORAGE_ROOT/voip/turnserver.conf" </etc/turnserver.conf </etc/logrotate.d/coturn <