소스 검색

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

pull/2121/head
Samonitari 3 년 전
부모
커밋
1d93f02d65
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      group_vars/matrix_servers

+ 2
- 2
group_vars/matrix_servers 파일 보기

@@ -2340,7 +2340,7 @@ matrix_synapse_turn_uris: |
] 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 }}"

@@ -2611,7 +2611,7 @@ matrix_dendrite_turn_uris: |
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 }}"



불러오는 중...
취소
저장