mirror of
https://github.com/famedly/ansible-collection-matrix
synced 2024-12-13 12:42:29 +00:00
Extract skip tls from configuration
This commit is contained in:
parent
894b7ff906
commit
15dc5d49a2
3 changed files with 3 additions and 4 deletions
|
@ -39,7 +39,6 @@ The following should be present on the target system
|
|||
| matrix_synapse_signing_key_path | "/opt/synapse/ssl/{{ matrix_server_name }}.signing.key" |
|
||||
| matrix_synapse_version | "v0.99.1.1" |
|
||||
| matrix_synapse_log_days_keep | 30 |
|
||||
| matrix_synapse_skip_tls | false |
|
||||
| matrix_synapse_registration_secret | _randomly generated_ |
|
||||
|
||||
## Dependencies
|
||||
|
|
|
@ -30,4 +30,4 @@
|
|||
owner: synapse
|
||||
group: synapse
|
||||
mode: "0600"
|
||||
when: not matrix_synapse_skip_tls
|
||||
when: not matrix_synapse_config.no_tls
|
||||
|
|
|
@ -9,7 +9,7 @@ matrix_synapse_config:
|
|||
port: 80
|
||||
bind_addresses: ['::', '0.0.0.0']
|
||||
reprovision_threshold: 30
|
||||
no_tls: "{{ matrix_synapse_skip_tls }}"
|
||||
no_tls: false
|
||||
tls_fingerprints: []
|
||||
pid_file: "/opt/synapse/synapse.pid"
|
||||
soft_file_limit: 0
|
||||
|
@ -20,7 +20,7 @@ matrix_synapse_config:
|
|||
- '::'
|
||||
- '0.0.0.0'
|
||||
type: http
|
||||
tls: "{{ not matrix_synapse_skip_tls }}"
|
||||
tls: true
|
||||
x_forwarded: false
|
||||
resources:
|
||||
- names: [client]
|
||||
|
|
Loading…
Reference in a new issue