Просмотр исходного кода

Add config options to turnserver.conf

pull/120/head
Stuart Mumford 7 лет назад
Родитель
Сommit
c0dc56324a
Не найден GPG ключ соответствующий данной подписи Идентификатор GPG ключа: 60BC5C03E6276769
1 измененных файлов: 17 добавлений и 0 удалений
  1. +17
    -0
      roles/matrix-coturn/templates/turnserver.conf.j2

+ 17
- 0
roles/matrix-coturn/templates/turnserver.conf.j2 Просмотреть файл

@@ -11,3 +11,20 @@ no-cli
no-tls no-tls
no-dtls no-dtls
prod prod
no-tcp-relay
{% if matrix_coturn_user_quota is defined %}
user-quota={{ matrix_coturn_user_quota }}
{% endif %}
{% if matrix_coturn_total_quota is defined %}
total-quota={{ matrix_coturn_total_quota }}
{% endif %}
{% if matrix_coturn_denied_peer_ips is defined %}
{% for ip_range in matrix_coturn_denied_peer_ips %}
denied-peer-ip={{ ip_range }}
{% endfor %}
{% endif %}
{% if matrix_coturn_allowed_peer_ips is defined %}
{% for ip_range in matrix_coturn_allowed_peer_ips %}
allowed-peer-ip={{ ip_range }}
{% endfor %}
{% endif %}

Загрузка…
Отмена
Сохранить