Update to 2022-02-18 18:00

This commit is contained in:
Daniel Berteaud 2022-02-18 18:00:07 +01:00
parent 767adc1e83
commit f5ac84a5e9
2 changed files with 13 additions and 12 deletions

View File

@ -3,7 +3,7 @@ verbose
fingerprint
{% if turn_auth_secret is defined %}
use-auth-secret
static-auth-secret {{ turn_auth_secret }}
static-auth-secret={{ turn_auth_secret }}
{% else %}
lt-cred-mech
{% endif %}
@ -11,13 +11,13 @@ no-sslv2
no-sslv3
no-loopback-peers
no-multicast-peers
realm {{ turn_realm | default(ansible_domain) }}
proc-user coturn
proc-group coturn
realm={{ turn_realm | default(ansible_domain) }}
proc-user=coturn
proc-group=coturn
syslog
{% for ip in turn_listen_ip %}
listening-ip {{ ip }}
listening-ip={{ ip }}
{% endfor %}
{% if not turn_allow_non_tls %}
@ -25,19 +25,19 @@ no-tcp
no-udp
{% endif %}
listening-port {{ turn_port }}
listening-port={{ turn_port }}
{% if turn_tls %}
tls-listening-port {{ turn_tls_port }}
tls-listening-port={{ turn_tls_port }}
{% if turn_letsencrypt_cert is defined %}
cert /etc/coturn/ssl/cert.pem
pkey /etc/coturn/ssl/key.pem
cert=/etc/coturn/ssl/cert.pem
pkey=/etc/coturn/ssl/key.pem
{% else %}
cert {{ turn_tls_cert }}
pkey {{ turn_tls_key }}
cert={{ turn_tls_cert }}
pkey={{ turn_tls_key }}
{% endif %}
{% endif %}
{% if turn_external_ip is defined %}
external-ip {{ turn_external_ip }}
external-ip={{ turn_external_ip }}
{% endif %}

View File

@ -1,3 +1,4 @@
---
- include_tasks: install_{{ ansible_os_family }}.yml
tags: node