ansible-roles/roles/matrix_synapse_admin/defaults/main.yml

25 lines
899 B
YAML

---
# Version to deploy
synadm_version: 0.10.0
# URL of the tarball
synadm_archive_url: https://github.com/Awesome-Technologies/synapse-admin/releases/download/{{ synadm_version }}/synapse-admin-{{ synadm_version }}.tar.gz
# Expected sha256 of the archive
synadm_archive_sha256: 9cb1af8ae714306f6b0dd8f4ccb6066581f1a0bb52e6cc1ebc3509af30c2e3b8
# Shoulad ansible handle upgrades, or just initial install ?
synadm_manage_upgrade: True
# Root dir where synadm will be installed
synadm_root_dir: /opt/matrix/synapse_admin
# Should a web alilas be created, eg set it to synadm to access it from https://yourserver/synadm
# If an alias is not defined (or set to False), you'll have to create a virtualhost pointing at {{ synadm_root_dir }}/web
synadm_web_alias: synadm
# Optional list of allowed IP address. If undefined, everyone can access it
# synadm_src_ip:
# - 12.13.14.15
# - 16.17.18.19