Procházet zdrojové kódy

Merge pull request #120 from Cadair/turn_config

Add config options to turnserver.conf
pull/126/head
Slavi Pantaleev před 7 roky
committed by GitHub
rodič
revize
0bc751261d
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: 4AEE18F83AFDEB23
2 změnil soubory, kde provedl 17 přidání a 0 odebrání
  1. +4
    -0
      roles/matrix-coturn/defaults/main.yml
  2. +13
    -0
      roles/matrix-coturn/templates/turnserver.conf.j2

+ 4
- 0
roles/matrix-coturn/defaults/main.yml Zobrazit soubor

@@ -17,3 +17,7 @@ matrix_coturn_turn_udp_min_port: 49152
matrix_coturn_turn_udp_max_port: 49172 matrix_coturn_turn_udp_max_port: 49172


matrix_coturn_turn_external_ip_address: "{{ ansible_host }}" matrix_coturn_turn_external_ip_address: "{{ ansible_host }}"
matrix_coturn_allowed_peer_ips: []
matrix_coturn_denied_peer_ips: []
matrix_coturn_user_quota: null
matrix_coturn_total_quota: null

+ 13
- 0
roles/matrix-coturn/templates/turnserver.conf.j2 Zobrazit soubor

@@ -11,3 +11,16 @@ no-cli
no-tls no-tls
no-dtls no-dtls
prod prod
no-tcp-relay
{% if matrix_coturn_user_quota != None %}
user-quota={{ matrix_coturn_user_quota }}
{% endif %}
{% if matrix_coturn_total_quota != None %}
total-quota={{ matrix_coturn_total_quota }}
{% endif %}
{% 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 %}

Načítá se…
Zrušit
Uložit