feat(synapse): add ansible role

This commit is contained in:
2024-09-20 14:15:55 +02:00
parent c29c7ded3f
commit 39c6e148ab
21 changed files with 677 additions and 0 deletions

View File

@ -0,0 +1,19 @@
---
synapse_user: synapse
synapse_version: "1.91.1"
synapse_deployment_method: "docker"
synapse_base_path: /opt/synapse
synapse_config_path: "{{ synapse_base_path }}/config"
synapse_data_path: "{{ synapse_base_path }}/data"
synapse_media_store_path: "{{ synapse_data_path }}/matrix"
synapse_signing_key: ~
synapse_signing_key_file: >-
{{ synapse_config_path }}/{{ synapse_domain }}.signing.key
synapse_homeserver_config_file: "{{ synapse_config_path }}/homeserver.yaml"
synapse_logging_config_file: >-
{{ synapse_config_path }}/{{ synapse_domain }}.log.config
synapse_pid_file: "{{ synapse_data_path }}/homeserver.pid"
synapse_sqlite_database_file: "{{ synapse_data_path }}/homeserver.db"