Add support for NCs Talk app with own stun/turn server.

This commit is contained in:
2020-03-21 12:57:11 +01:00
parent 6ea1f594b8
commit 9f2764c0ae
5 changed files with 96 additions and 0 deletions

View File

@ -386,6 +386,18 @@ jitsi_tcp_ports="$standard_http_ports"
jitsi_udp_port_range="10000:20000"
# - TURN Server (Stun Server) (for Nextcloud 'talk' app)
# -
nc_turn_server_ips=""
forward_nc_turn_server_ips=""
# - Ports used by local TURN Server (Stun Server)
# -
# - comma separated list
# -
nc_turn_ports="3478:3479,5349:5350"
# - TFTP Server
# -
# - NOT YET IMPLEMENTED

View File

@ -405,6 +405,18 @@ jitsi_tcp_ports="$standard_http_ports"
jitsi_udp_port_range="10000:20000"
# - TURN Server (Stun Server) (for Nextcloud 'talk' app)
# -
nc_turn_server_ips=""
forward_nc_turn_server_ips=""
# - Ports used by local TURN Server (Stun Server)
# -
# - comma separated list
# -
nc_turn_ports="3478:3479,5349:5350"
# - TFTP Server
# -
# - NOT YET IMPLEMENTED

View File

@ -315,6 +315,20 @@ for _ip in $forward_jitsi_server_ips ; do
forward_jitsi_server_ip_arr+=("$_ip")
done
# ---
# - IP Addresses TURN Server (Stun Server) (for Nextcloud 'talk' app)
# ---
# local
declare -a nc_turn_server_ip_arr
for _ip in $nc_turn_server_ips ; do
nc_turn_server_ip_arr+=("$_ip")
done
# DMZ
declare -a forward_nc_turn_server_ip_arr
for _ip in $forward_nc_turn_server_ips ; do
forward_nc_turn_server_ip_arr+=("$_ip")
done
# ---
# - IP Addresses Telephone Systems
# ---