Sfoglia il codice sorgente

Insert turn shared secret to server if turn URIs is not empty

pull/2121/head
Samonitari 3 anni fa
parent
commit
1d93f02d65
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. +2
    -2
      group_vars/matrix_servers

+ 2
- 2
group_vars/matrix_servers Vedi File

@@ -2340,7 +2340,7 @@ matrix_synapse_turn_uris: |
] if matrix_coturn_enabled else [] ] if matrix_coturn_enabled else []
}} }}


matrix_synapse_turn_shared_secret: "{{ matrix_coturn_turn_static_auth_secret if matrix_coturn_enabled else '' }}"
matrix_synapse_turn_shared_secret: "{{ matrix_coturn_turn_static_auth_secret if (matrix_synapse_turn_uris | length > 0) else '' }}"


matrix_synapse_self_check_validate_certificates: "{{ false if matrix_ssl_retrieval_method == 'self-signed' else true }}" matrix_synapse_self_check_validate_certificates: "{{ false if matrix_ssl_retrieval_method == 'self-signed' else true }}"


@@ -2611,7 +2611,7 @@ matrix_dendrite_turn_uris: |
else [] else []
}} }}


matrix_dendrite_turn_shared_secret: "{{ matrix_coturn_turn_static_auth_secret if matrix_coturn_enabled else '' }}"
matrix_dendrite_turn_shared_secret: "{{ matrix_coturn_turn_static_auth_secret if (matrix_dendrite_turn_uris | length > 0) else '' }}"


matrix_dendrite_disable_tls_validation: "{{ true if matrix_ssl_retrieval_method == 'self-signed' else false }}" matrix_dendrite_disable_tls_validation: "{{ true if matrix_ssl_retrieval_method == 'self-signed' else false }}"




Caricamento…
Annulla
Salva