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.
84 lines
4.5 KiB
YAML
84 lines
4.5 KiB
YAML
---
|
|
# matrix-appservice-webhooks is a Matrix <-> webhook bridge
|
|
# Project source code URL: https://github.com/redoonetworks/matrix-appservice-webhooks
|
|
|
|
matrix_appservice_webhooks_enabled: true
|
|
|
|
matrix_appservice_webhooks_container_image_self_build: false
|
|
matrix_appservice_webhooks_container_image_self_build_repo: "https://github.com/redoonetworks/matrix-appservice-webhooks"
|
|
matrix_appservice_webhooks_container_image_self_build_repo_version: "{{ 'master' if matrix_appservice_webhooks_version == 'latest' else matrix_appservice_webhooks_version }}"
|
|
matrix_appservice_webhooks_container_image_self_build_repo_dockerfile_path: "Dockerfile"
|
|
|
|
matrix_appservice_webhooks_version: v1.0.3-01
|
|
matrix_appservice_webhooks_docker_image: "{{ matrix_appservice_webhooks_docker_image_name_prefix }}redoonetworks/matrix-appservice-webhooks:{{ matrix_appservice_webhooks_version }}"
|
|
matrix_appservice_webhooks_docker_image_name_prefix: "{{ 'localhost/' if matrix_appservice_webhooks_container_image_self_build else matrix_container_global_registry_prefix }}"
|
|
matrix_appservice_webhooks_docker_image_force_pull: "{{ matrix_appservice_webhooks_docker_image.endswith(':latest') }}"
|
|
|
|
matrix_appservice_webhooks_base_path: "{{ matrix_base_data_path }}/appservice-webhooks"
|
|
matrix_appservice_webhooks_config_path: "{{ matrix_appservice_webhooks_base_path }}/config"
|
|
matrix_appservice_webhooks_data_path: "{{ matrix_appservice_webhooks_base_path }}/data"
|
|
matrix_appservice_webhooks_docker_src_files_path: "{{ matrix_appservice_webhooks_base_path }}/docker-src"
|
|
|
|
# If nginx-proxy is disabled, the bridge itself expects its endpoint to be on its own domain (e.g. "localhost:6789")
|
|
matrix_appservice_webhooks_public_endpoint: /appservice-webhooks
|
|
matrix_appservice_webhooks_inbound_uri_prefix: "{{ matrix_homeserver_url }}{{ matrix_appservice_webhooks_public_endpoint }}"
|
|
|
|
matrix_appservice_webhooks_bot_name: 'webhookbot'
|
|
matrix_appservice_webhooks_user_prefix: '_webhook_'
|
|
|
|
# Controls the webhooks_PORT and MATRIX_PORT of the installation
|
|
matrix_appservice_webhooks_matrix_port: 6789
|
|
|
|
# Controls whether the appservice-webhooks container exposes its HTTP port (tcp/6789 in the container).
|
|
#
|
|
# Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:9999"), or empty string to not expose.
|
|
matrix_appservice_webhooks_container_http_host_bind_port: ''
|
|
|
|
matrix_appservice_webhooks_homeserver_media_url: "{{ matrix_server_fqn_matrix }}"
|
|
matrix_appservice_webhooks_homeserver_url: ""
|
|
matrix_appservice_webhooks_homeserver_domain: "{{ matrix_domain }}"
|
|
matrix_appservice_webhooks_appservice_url: 'http://matrix-appservice-webhooks'
|
|
|
|
# A list of extra arguments to pass to the container
|
|
matrix_appservice_webhooks_container_extra_arguments: []
|
|
|
|
# List of systemd services that matrix-appservice-webhooks.service depends on.
|
|
matrix_appservice_webhooks_systemd_required_services_list: ['docker.service', 'matrix-synapse.service']
|
|
|
|
# List of systemd services that matrix-appservice-webhooks.service wants
|
|
matrix_appservice_webhooks_systemd_wanted_services_list: []
|
|
|
|
matrix_appservice_webhooks_appservice_token: ''
|
|
matrix_appservice_webhooks_homeserver_token: ''
|
|
matrix_appservice_webhooks_id_token: ''
|
|
matrix_appservice_webhooks_api_secret: ''
|
|
|
|
# Logging information (info and verbose is available) default is: info
|
|
matrix_appservice_webhooks_log_level: 'info'
|
|
|
|
matrix_appservice_webhooks_configuration_yaml: "{{ lookup('template', 'templates/config.yaml.j2') }}"
|
|
|
|
matrix_appservice_webhooks_configuration_extension_yaml: |
|
|
#
|
|
|
|
matrix_appservice_webhooks_configuration_extension: "{{ matrix_appservice_webhooks_configuration_extension_yaml | from_yaml if matrix_appservice_webhooks_configuration_extension_yaml | from_yaml else {} }}"
|
|
|
|
matrix_appservice_webhooks_configuration: "{{ matrix_appservice_webhooks_configuration_yaml | from_yaml | combine(matrix_appservice_webhooks_configuration_extension, recursive=True) }}"
|
|
|
|
matrix_appservice_webhooks_registration_yaml: |
|
|
id: "{{ matrix_appservice_webhooks_id_token }}"
|
|
hs_token: "{{ matrix_appservice_webhooks_homeserver_token }}"
|
|
as_token: "{{ matrix_appservice_webhooks_appservice_token }}"
|
|
namespaces:
|
|
users:
|
|
- exclusive: true
|
|
regex: '^@{{ matrix_appservice_webhooks_user_prefix | regex_escape }}.*:{{ matrix_domain | regex_escape }}$'
|
|
aliases: []
|
|
rooms: []
|
|
url: "{{ matrix_appservice_webhooks_appservice_url }}:{{ matrix_appservice_webhooks_matrix_port }}"
|
|
sender_localpart: _webhook
|
|
rate_limited: false
|
|
protocols: null
|
|
|
|
matrix_appservice_webhooks_registration: "{{ matrix_appservice_webhooks_registration_yaml | from_yaml }}"
|