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

25 lines
898 B
YAML

---
# Version to deploy
synadm_version: 0.9.1
# 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: 116587e23651c42bb63da8f660c475f5aca2b3f6a3bc5bcac43322ad1a071f2b
# 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