2019-05-07 19:23:35 +00:00
|
|
|
#jinja2: lstrip_blocks: "True"
|
2018-05-25 18:58:53 +00:00
|
|
|
use-auth-secret
|
|
|
|
static-auth-secret={{ matrix_coturn_turn_static_auth_secret }}
|
2019-02-28 09:51:09 +00:00
|
|
|
realm=turn.{{ matrix_server_fqn_matrix }}
|
2019-03-19 08:24:39 +00:00
|
|
|
|
2018-05-25 18:58:53 +00:00
|
|
|
min-port={{ matrix_coturn_turn_udp_min_port }}
|
|
|
|
max-port={{ matrix_coturn_turn_udp_max_port }}
|
2022-04-11 12:38:35 +00:00
|
|
|
{% for ip in matrix_coturn_turn_external_ip_addresses|select('ne', '') %}
|
2022-04-10 20:51:03 +00:00
|
|
|
external-ip={{ ip }}
|
|
|
|
{% endfor %}
|
2019-03-19 08:24:39 +00:00
|
|
|
|
2018-05-25 18:58:53 +00:00
|
|
|
log-file=stdout
|
|
|
|
pidfile=/var/tmp/turnserver.pid
|
|
|
|
userdb=/var/tmp/turnserver.db
|
2019-03-19 08:24:39 +00:00
|
|
|
|
2019-01-29 15:56:40 +00:00
|
|
|
no-cli
|
2019-03-19 08:24:39 +00:00
|
|
|
|
|
|
|
{% if matrix_coturn_tls_enabled %}
|
|
|
|
cert={{ matrix_coturn_tls_cert_path }}
|
|
|
|
pkey={{ matrix_coturn_tls_key_path }}
|
2021-04-16 06:29:32 +00:00
|
|
|
{% if not matrix_coturn_tls_v1_enabled %}
|
2021-04-15 13:55:23 +00:00
|
|
|
no-tlsv1
|
2021-04-16 06:29:32 +00:00
|
|
|
{% endif %}
|
|
|
|
{% if not matrix_coturn_tls_v1_1_enabled %}
|
2021-04-15 13:55:23 +00:00
|
|
|
no-tlsv1_1
|
2021-04-16 06:29:32 +00:00
|
|
|
{% endif %}
|
2019-03-19 08:24:39 +00:00
|
|
|
{% else %}
|
2019-02-07 11:20:30 +00:00
|
|
|
no-tls
|
|
|
|
no-dtls
|
2019-03-19 08:24:39 +00:00
|
|
|
{% endif %}
|
|
|
|
|
2019-01-29 15:56:40 +00:00
|
|
|
prod
|
2019-03-18 11:18:30 +00:00
|
|
|
no-tcp-relay
|
2019-03-19 08:24:39 +00:00
|
|
|
|
2019-03-18 11:58:52 +00:00
|
|
|
{% if matrix_coturn_user_quota != None %}
|
2019-03-18 11:18:30 +00:00
|
|
|
user-quota={{ matrix_coturn_user_quota }}
|
|
|
|
{% endif %}
|
2019-03-18 11:58:52 +00:00
|
|
|
{% if matrix_coturn_total_quota != None %}
|
2019-03-18 11:18:30 +00:00
|
|
|
total-quota={{ matrix_coturn_total_quota }}
|
|
|
|
{% endif %}
|
2019-03-19 08:24:39 +00:00
|
|
|
|
2019-03-18 11:18:30 +00:00
|
|
|
{% for ip_range in matrix_coturn_denied_peer_ips %}
|
|
|
|
denied-peer-ip={{ ip_range }}
|
|
|
|
{% endfor %}
|
|
|
|
{% for ip_range in matrix_coturn_allowed_peer_ips %}
|
|
|
|
allowed-peer-ip={{ ip_range }}
|
|
|
|
{% endfor %}
|