feat(synapse): add ansible role
This commit is contained in:
10
roles/synapse/defaults/main/homeserver.tls.yml
Normal file
10
roles/synapse/defaults/main/homeserver.tls.yml
Normal file
@ -0,0 +1,10 @@
|
||||
---
|
||||
synapse_config_tls_certificate_path: ~
|
||||
synapse_config_tls_private_key_path: ~
|
||||
synapse_tls_config: >-
|
||||
{{ {}
|
||||
| combine(({"tls_certificate_path": synapse_config_tls_certificate_path })
|
||||
if synapse_config_tls_certificate_path | default(false, true) else {})
|
||||
| combine(({"tls_private_key_path": synapse_config_tls_private_key_path })
|
||||
if synapse_config_tls_private_key_path | default(false, true) else {})
|
||||
}}
|
Reference in New Issue
Block a user