410a915a8a
This paves the way for installing other roles into `roles/galaxy` using `ansible-galaxy`, similar to how it's done in: - https://github.com/spantaleev/gitea-docker-ansible-deploy - https://github.com/spantaleev/nextcloud-docker-ansible-deploy In the near future, we'll be removing a lot of the shared role code from here and using upstream roles for it. Some of the core `matrix-*` roles have already been extracted out into other reusable roles: - https://github.com/devture/com.devture.ansible.role.postgres - https://github.com/devture/com.devture.ansible.role.systemd_docker_base - https://github.com/devture/com.devture.ansible.role.timesync - https://github.com/devture/com.devture.ansible.role.vars_preserver - https://github.com/devture/com.devture.ansible.role.playbook_runtime_messages - https://github.com/devture/com.devture.ansible.role.playbook_help We just need to migrate to those.
34 lines
1.7 KiB
YAML
34 lines
1.7 KiB
YAML
---
|
|
# matrix-synapse-admin is a web UI for mananging the Synapse Matrix server
|
|
# Project source code URL: https://github.com/Awesome-Technologies/synapse-admin
|
|
|
|
matrix_synapse_admin_enabled: true
|
|
|
|
matrix_synapse_admin_container_image_self_build: false
|
|
matrix_synapse_admin_container_image_self_build_repo: "https://github.com/Awesome-Technologies/synapse-admin.git"
|
|
|
|
matrix_synapse_admin_docker_src_files_path: "{{ matrix_base_data_path }}/synapse-admin/docker-src"
|
|
|
|
matrix_synapse_admin_version: 0.8.5
|
|
matrix_synapse_admin_docker_image: "{{ matrix_synapse_admin_docker_image_name_prefix }}awesometechnologies/synapse-admin:{{ matrix_synapse_admin_version }}"
|
|
matrix_synapse_admin_docker_image_name_prefix: "{{ 'localhost/' if matrix_synapse_admin_container_image_self_build else matrix_container_global_registry_prefix }}"
|
|
matrix_synapse_admin_docker_image_force_pull: "{{ matrix_synapse_admin_docker_image.endswith(':latest') }}"
|
|
|
|
# A list of extra arguments to pass to the container
|
|
matrix_synapse_admin_container_extra_arguments: []
|
|
|
|
# List of systemd services that matrix-synapse-admin.service depends on
|
|
matrix_synapse_admin_systemd_required_services_list: ['docker.service']
|
|
|
|
# List of systemd services that matrix-synapse-admin.service wants
|
|
matrix_synapse_admin_systemd_wanted_services_list: []
|
|
|
|
# Controls whether the matrix-synapse-admin container exposes its HTTP port (tcp/80 in the container).
|
|
#
|
|
# Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:8766"), or empty string to not expose.
|
|
matrix_synapse_admin_container_http_host_bind_port: ''
|
|
|
|
# The path at which Synapse Admin will be exposed on `matrix.DOMAIN`
|
|
# (only applies when matrix-nginx-proxy is used).
|
|
matrix_synapse_admin_public_endpoint: /synapse-admin
|