mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-11-14 10:04:46 +08:00
Do not mount /matrix/ssl into matrix-coturn when matrix_ssl_retrieval_method is 'none'
Related to https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/734
Similar to 12867e9f18
, but for `matrix-coturn` (not
`matrix-nginx-proxy`).
This commit is contained in:
parent
12867e9f18
commit
d235335507
@ -578,13 +578,19 @@ matrix_coturn_container_image_self_build: "{{ matrix_architecture != 'amd64'}}"
|
|||||||
|
|
||||||
matrix_coturn_turn_external_ip_address: "{{ ansible_host }}"
|
matrix_coturn_turn_external_ip_address: "{{ ansible_host }}"
|
||||||
|
|
||||||
matrix_coturn_tls_enabled: true
|
matrix_coturn_tls_enabled: "{{ matrix_ssl_retrieval_method != 'none' }}"
|
||||||
matrix_coturn_tls_cert_path: "{{ matrix_ssl_config_dir_path }}/live/{{ matrix_server_fqn_matrix }}/fullchain.pem"
|
matrix_coturn_tls_cert_path: "{{ matrix_ssl_config_dir_path }}/live/{{ matrix_server_fqn_matrix }}/fullchain.pem"
|
||||||
matrix_coturn_tls_key_path: "{{ matrix_ssl_config_dir_path }}/live/{{ matrix_server_fqn_matrix }}/privkey.pem"
|
matrix_coturn_tls_key_path: "{{ matrix_ssl_config_dir_path }}/live/{{ matrix_server_fqn_matrix }}/privkey.pem"
|
||||||
matrix_coturn_container_additional_volumes:
|
matrix_coturn_container_additional_volumes: |
|
||||||
- src: "{{ matrix_ssl_config_dir_path }}"
|
{{
|
||||||
dst: "{{ matrix_ssl_config_dir_path }}"
|
([] if matrix_ssl_retrieval_method == 'none' else [
|
||||||
options: ro
|
{
|
||||||
|
'src': matrix_ssl_config_dir_path,
|
||||||
|
'dst': matrix_ssl_config_dir_path,
|
||||||
|
'options': 'ro',
|
||||||
|
}
|
||||||
|
])
|
||||||
|
}}
|
||||||
|
|
||||||
######################################################################
|
######################################################################
|
||||||
#
|
#
|
||||||
|
Loading…
Reference in New Issue
Block a user