matrix: Fix default value for synapse options
This value is expected to be a dict instead of an empty array and will otherwise throw errors.
This commit is contained in:
parent
5a3d4cf171
commit
630460a300
1 changed files with 2 additions and 1 deletions
|
@ -35,7 +35,8 @@ matrix_synapse_servername: matrix.example.com
|
|||
matrix_synapse_domain: "{{ matrix_synapse_servername }}"
|
||||
|
||||
# Additional synapse ENV options (keys will automatically be prefixed with SYNAPSE_) see https://github.com/matrix-org/synapse/tree/develop/docker#generating-a-configuration-file
|
||||
matrix_synapse_options: []
|
||||
# Note: Some keys are needed for generating the initial config file like "SYNAPSE_REPORT_STATS" and "SYNAPSE_SERVER_NAME"!
|
||||
matrix_synapse_options: {}
|
||||
|
||||
# The database password to use
|
||||
matrix_database_password: "{{ lookup('passwordstore', matrix_synapse_domain + '/db create=true length=42') }}"
|
||||
|
|
Loading…
Add table
Reference in a new issue