浏览代码

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 }}"



正在加载...
取消
保存