Handle matrix_playbook_reverse_proxy_type being "none" when deciding on Coturn certificate parameters

This commit is contained in:
Slavi Pantaleev 2023-02-08 16:12:19 +02:00
parent d44d4b637f
commit ddf6b2d4ee
1 changed files with 2 additions and 0 deletions

View File

@ -1919,6 +1919,7 @@ matrix_coturn_tls_cert_path: |-
{
'nginx-proxy': '/fullchain.pem',
'traefik': '/certificate.crt',
'none': '',
}[matrix_playbook_reverse_proxy_type]
}}
@ -1927,6 +1928,7 @@ matrix_coturn_tls_key_path: |-
{
'nginx-proxy': '/privkey.pem',
'traefik': '/privatekey.key',
'none': '',
}[matrix_playbook_reverse_proxy_type]
}}