2022-02-05 20:32:54 +00:00
---
2019-02-28 09:51:09 +00:00
# The bare domain name which represents your Matrix identity.
# Matrix user ids for your server will be of the form (`@user:<matrix-domain>`).
#
2019-01-12 15:53:00 +00:00
# Note: this playbook does not touch the server referenced here.
2019-02-28 09:51:09 +00:00
# Installation happens on another server ("matrix.<matrix-domain>", see `matrix_server_fqn_matrix`).
#
# Example value: example.com
matrix_domain : ~
2019-01-12 15:53:00 +00:00
2022-06-27 07:34:04 +00:00
# The optional matrix admin MXID, used in bridges' configs to set bridge admin user
2022-06-27 11:38:21 +00:00
# Example value: "@someone:{{ matrix_domain }}"
2022-06-27 07:34:04 +00:00
matrix_admin : ''
2022-07-18 09:28:59 +00:00
# Homeserver admin contacts and support page as per MSC 1929
# See: https://github.com/matrix-org/matrix-spec-proposals/pull/1929
# Users in form:
# matrix_homeserver_admin_contacts:
# - matrix_id: @admin:domain.tld
# email_address: admin@domain.tld
# role: admin
# - email_address: security@domain.tld
# role: security
2022-07-18 09:32:38 +00:00
# Also see: `matrix_well_known_matrix_support_enabled`
2022-07-18 09:28:59 +00:00
matrix_homeserver_admin_contacts : [ ]
# Url string like https://domain.tld/support.html
2022-07-18 09:32:38 +00:00
# Also see: `matrix_well_known_matrix_support_enabled`
2022-07-18 09:28:59 +00:00
matrix_homeserver_support_url : ''
2021-12-17 17:00:17 +00:00
# This will contain the homeserver implementation that is in use.
2021-12-23 14:28:34 +00:00
# Valid values: synapse, dendrite
#
# By default, we use Synapse, because it's the only full-featured Matrix server at the moment.
#
# This value automatically influences other variables (`matrix_synapse_enabled`, `matrix_dendrite_enabled`, etc.).
# The homeserver implementation of an existing server cannot be changed without data loss.
matrix_homeserver_implementation : synapse
2021-12-17 17:00:17 +00:00
2022-01-07 14:00:42 +00:00
# This contains a secret, which is used for generating various other secrets later on.
matrix_homeserver_generic_secret_key : ''
2019-02-28 09:51:09 +00:00
# This is where your data lives and what we set up.
2020-07-17 08:31:20 +00:00
# This and the Element FQN (see below) are expected to be on the same server.
2019-02-28 09:51:09 +00:00
matrix_server_fqn_matrix : "matrix.{{ matrix_domain }}"
2019-01-12 15:53:00 +00:00
2021-06-28 12:30:48 +00:00
# This is where you access federation API.
matrix_server_fqn_matrix_federation : '{{ matrix_server_fqn_matrix }}'
2020-07-17 08:31:20 +00:00
# This is where you access the Element web UI from (if enabled via matrix_client_element_enabled; enabled by default).
2019-02-28 09:51:09 +00:00
# This and the Matrix FQN (see above) are expected to be on the same server.
2020-07-17 08:31:20 +00:00
matrix_server_fqn_element : "element.{{ matrix_domain }}"
2019-01-12 15:53:00 +00:00
2021-05-15 09:23:36 +00:00
# This is where you access the Hydrogen web client from (if enabled via matrix_client_hydrogen_enabled; disabled by default).
matrix_server_fqn_hydrogen : "hydrogen.{{ matrix_domain }}"
2022-01-05 16:33:21 +00:00
# This is where you access the Cinny web client from (if enabled via matrix_client_cinny_enabled; disabled by default).
matrix_server_fqn_cinny : "cinny.{{ matrix_domain }}"
2022-04-23 13:19:24 +00:00
# This is where you access the buscarron bot from (if enabled via matrix_bot_buscarron_enabled; disabled by default).
matrix_server_fqn_buscarron : "buscarron.{{ matrix_domain }}"
2019-03-07 05:22:08 +00:00
# This is where you access the Dimension.
matrix_server_fqn_dimension : "dimension.{{ matrix_domain }}"
2021-03-11 18:23:01 +00:00
# For use with Go-NEB! (github callback url for example)
matrix_server_fqn_bot_go_neb : "goneb.{{ matrix_domain }}"
2020-03-23 15:19:15 +00:00
# This is where you access Jitsi.
matrix_server_fqn_jitsi : "jitsi.{{ matrix_domain }}"
2021-01-29 09:30:04 +00:00
# This is where you access Grafana.
matrix_server_fqn_grafana : "stats.{{ matrix_domain }}"
2021-03-20 11:31:34 +00:00
# This is where you access the Sygnal push gateway.
matrix_server_fqn_sygnal : "sygnal.{{ matrix_domain }}"
2022-06-21 13:31:21 +00:00
# This is where you access the ntfy push notification service.
matrix_server_fqn_ntfy : "ntfy.{{ matrix_domain }}"
2020-06-09 05:29:03 +00:00
matrix_federation_public_port : 8448
2020-12-17 09:33:18 +00:00
# The architecture that your server runs.
# Recognized values by us are 'amd64', 'arm32' and 'arm64'.
# Not all architectures support all services, so your experience (on non-amd64) may vary.
# See docs/alternative-architectures.md
matrix_architecture : amd64
2020-12-17 09:37:30 +00:00
# The architecture for Debian packages.
# See: https://wiki.debian.org/SupportedArchitectures
# We just remap from our `matrix_architecture` values to what Debian and possibly other distros call things.
matrix_debian_arch : "{{ 'armhf' if matrix_architecture == 'arm32' else matrix_architecture }}"
2022-03-10 09:28:25 +00:00
matrix_container_global_registry_prefix : "docker.io/"
2022-03-17 15:37:11 +00:00
# Each docker pull will retry on failed attempt 10 times with delay of 10 seconds between each attempt.
matrix_container_retries_count : 10
matrix_container_retries_delay : 10
2022-04-19 19:01:14 +00:00
# Each get_url will retry on failed attempt 10 times with delay of 10 seconds between each attempt.
matrix_geturl_retries_count : 10
matrix_geturl_retries_delay : 10
2019-01-12 15:53:00 +00:00
matrix_user_username : "matrix"
2020-05-01 17:59:32 +00:00
matrix_user_groupname : "matrix"
2019-01-12 15:53:00 +00:00
2020-07-06 08:05:34 +00:00
# By default, the playbook creates the user (`matrix_user_username`)
# and group (`matrix_user_groupname`) with a random id.
# To use a specific user/group id, override these variables.
matrix_user_uid : ~
matrix_user_gid : ~
2019-01-12 15:53:00 +00:00
matrix_base_data_path : "/matrix"
2019-01-14 13:28:37 +00:00
matrix_base_data_path_mode : "750"
2019-01-12 15:53:00 +00:00
matrix_static_files_base_path : "{{ matrix_base_data_path }}/static-files"
2020-03-24 18:27:58 +00:00
matrix_systemd_path : "/etc/systemd/system"
2021-01-14 21:23:46 +00:00
2021-01-14 22:21:55 +00:00
# Specifies the path to use for the `HOME` environment variable for systemd unit files.
# Docker 20.10 complains with `WARNING: Error loading config file: .dockercfg: $HOME is not defined`
# if `$HOME` is not defined, so we define something to make it happy.
matrix_systemd_unit_home_path : /root
2021-01-14 21:23:46 +00:00
# This is now unused. We keep it so that cleanup tasks can use it.
# To be removed in the future.
2020-03-24 18:27:58 +00:00
matrix_cron_path : "/etc/cron.d"
2021-01-14 21:23:46 +00:00
2020-03-24 18:27:58 +00:00
matrix_local_bin_path : "/usr/local/bin"
2019-01-12 15:53:00 +00:00
2020-05-27 16:53:52 +00:00
matrix_host_command_docker : "/usr/bin/env docker"
matrix_host_command_sleep : "/usr/bin/env sleep"
matrix_host_command_chown : "/usr/bin/env chown"
matrix_host_command_fusermount : "/usr/bin/env fusermount"
2020-05-27 20:18:24 +00:00
matrix_host_command_openssl : "/usr/bin/env openssl"
2020-05-27 20:52:51 +00:00
matrix_host_command_systemctl : "/usr/bin/env systemctl"
2021-01-27 08:22:46 +00:00
matrix_host_command_sh : "/usr/bin/env sh"
2020-05-27 16:53:52 +00:00
2022-02-09 14:16:59 +00:00
matrix_ntpd_package : "{{ 'systemd-timesyncd' if (ansible_os_family == 'RedHat' and ansible_distribution_major_version|int > 7) or (ansible_distribution == 'Ubuntu' and ansible_distribution_major_version|int > 18) else ( 'systemd' if ansible_os_family == 'Suse' else 'ntp' ) }}"
matrix_ntpd_service : "{{ 'systemd-timesyncd' if (ansible_os_family == 'RedHat' and ansible_distribution_major_version|int > 7) or (ansible_distribution == 'Ubuntu' and ansible_distribution_major_version|int > 18) or ansible_distribution == 'Archlinux' or ansible_os_family == 'Suse' else ('ntpd' if ansible_os_family == 'RedHat' else 'ntp') }}"
2020-04-05 06:42:52 +00:00
2019-02-28 09:51:09 +00:00
matrix_homeserver_url : "https://{{ matrix_server_fqn_matrix }}"
2019-01-16 16:05:48 +00:00
2021-12-23 16:13:44 +00:00
# Specifies where the homeserver's Client-Server API is on the container network.
# Where this is depends on whether there's a reverse-proxy in front of the homeserver, which homeserver it is, etc.
2021-01-25 11:55:08 +00:00
# This likely gets overriden elsewhere.
2021-11-16 19:03:21 +00:00
matrix_homeserver_container_url : ""
2021-01-25 11:55:08 +00:00
2021-12-23 16:13:44 +00:00
# Specifies where the homeserver's Federation API is on the container network.
# Where this is depends on whether there's a reverse-proxy in front of the homeserver, which homeserver it is, etc.
# This likely gets overriden elsewhere.
matrix_homeserver_container_federation_url : ""
2019-01-16 16:05:48 +00:00
matrix_identity_server_url : ~
2019-01-12 15:53:00 +00:00
2019-12-10 04:23:56 +00:00
matrix_integration_manager_rest_url : ~
matrix_integration_manager_ui_url : ~
2020-04-09 06:58:35 +00:00
# The domain name where a Jitsi server is self-hosted.
2020-07-17 08:31:20 +00:00
# If set, `/.well-known/matrix/client` will suggest Element clients to use that Jitsi server.
2020-09-26 16:24:09 +00:00
# See: https://github.com/vector-im/element-web/blob/develop/docs/jitsi.md#configuring-element-to-use-your-self-hosted-jitsi-server
matrix_client_element_jitsi_preferredDomain : ''
2020-04-09 06:58:35 +00:00
2020-07-17 08:31:20 +00:00
# Controls whether Element should use End-to-End Encryption by default.
# Setting this to false will update `/.well-known/matrix/client` and tell Element clients to avoid E2EE.
2020-09-26 16:24:09 +00:00
# See: https://github.com/vector-im/element-web/blob/develop/docs/e2ee.md
matrix_client_element_e2ee_default : true
2020-06-24 08:38:51 +00:00
2020-10-15 22:32:00 +00:00
# Controls whether Element should require a secure backup set up before Element can be used.
# Setting this to true will update `/.well-known/matrix/client` and tell Element require a secure backup.
# See: https://github.com/vector-im/element-web/blob/develop/docs/e2ee.md
2020-10-16 07:24:50 +00:00
matrix_client_element_e2ee_secure_backup_required : false
2020-10-15 22:32:00 +00:00
# Controls which backup methods from ["key", "passphrase"] should be used, both is the default.
# Setting this to other then empty will update `/.well-known/matrix/client` and tell Element which method to use
# See: https://github.com/vector-im/element-web/blob/develop/docs/e2ee.md
2020-10-16 07:24:50 +00:00
matrix_client_element_e2ee_secure_backup_setup_methods : [ ]
2020-10-15 22:32:00 +00:00
2021-11-26 13:25:18 +00:00
# Default `/.well-known/matrix/client` configuration - it covers the generic use case.
# You can customize it by controlling the various variables inside the template file that it references.
#
# For a more advanced customization, you can extend the default (see `matrix_well_known_matrix_client_configuration_extension_json`)
# or completely replace this variable with your own template.
#
# The side-effect of this lookup is that Ansible would even parse the JSON for us, returning a dict.
# This is unlike what it does when looking up YAML template files (no automatic parsing there).
matrix_well_known_matrix_client_configuration_default : "{{ lookup('template', 'templates/static-files/well-known/matrix-client.j2') }}"
# Your custom JSON configuration for `/.well-known/matrix/client` should go to `matrix_well_known_matrix_client_configuration_extension_json`.
# This configuration extends the default starting configuration (`matrix_well_known_matrix_client_configuration_default`).
#
# You can override individual variables from the default configuration, or introduce new ones.
#
# If you need something more special, you can take full control by
# completely redefining `matrix_well_known_matrix_client_configuration`.
#
# Example configuration extension follows:
#
# matrix_well_known_matrix_client_configuration_extension_json: |
# {
# "io.element.call_behaviour": {
# "widget_build_url": "https://dimension.example.com/api/v1/dimension/bigbluebutton/widget_state"
# }
# }
matrix_well_known_matrix_client_configuration_extension_json : '{}'
matrix_well_known_matrix_client_configuration_extension : "{{ matrix_well_known_matrix_client_configuration_extension_json|from_json if matrix_well_known_matrix_client_configuration_extension_json|from_json is mapping else {} }}"
# Holds the final `/.well-known/matrix/client` configuration (a combination of the default and its extension).
# You most likely don't need to touch this variable. Instead, see `matrix_well_known_matrix_client_configuration_default` and `matrix_well_known_matrix_client_configuration_extension_json`.
matrix_well_known_matrix_client_configuration : "{{ matrix_well_known_matrix_client_configuration_default|combine(matrix_well_known_matrix_client_configuration_extension, recursive=True) }}"
# Default `/.well-known/matrix/server` configuration - it covers the generic use case.
# You can customize it by controlling the various variables inside the template file that it references.
#
# For a more advanced customization, you can extend the default (see `matrix_well_known_matrix_server_configuration_extension_json`)
# or completely replace this variable with your own template.
#
# The side-effect of this lookup is that Ansible would even parse the JSON for us, returning a dict.
# This is unlike what it does when looking up YAML template files (no automatic parsing there).
matrix_well_known_matrix_server_configuration_default : "{{ lookup('template', 'templates/static-files/well-known/matrix-server.j2') }}"
# Your custom JSON configuration for `/.well-known/matrix/server` should go to `matrix_well_known_matrix_server_configuration_extension_json`.
# This configuration extends the default starting configuration (`matrix_well_known_matrix_server_configuration_default`).
#
# You can override individual variables from the default configuration, or introduce new ones.
#
# If you need something more special, you can take full control by
# completely redefining `matrix_well_known_matrix_server_configuration`.
#
# Example configuration extension follows:
#
# matrix_well_known_matrix_server_configuration_extension_json: |
# {
# "something": "another"
# }
matrix_well_known_matrix_server_configuration_extension_json : '{}'
matrix_well_known_matrix_server_configuration_extension : "{{ matrix_well_known_matrix_server_configuration_extension_json|from_json if matrix_well_known_matrix_server_configuration_extension_json|from_json is mapping else {} }}"
# Holds the final `/.well-known/matrix/server` configuration (a combination of the default and its extension).
# You most likely don't need to touch this variable. Instead, see `matrix_well_known_matrix_server_configuration_default` and `matrix_well_known_matrix_server_configuration_extension_json`.
matrix_well_known_matrix_server_configuration : "{{ matrix_well_known_matrix_server_configuration_default|combine(matrix_well_known_matrix_server_configuration_extension, recursive=True) }}"
2022-07-18 09:28:59 +00:00
# The side-effect of this lookup is that Ansible would even parse the JSON for us, returning a dict.
# This is unlike what it does when looking up YAML template files (no automatic parsing there).
matrix_well_known_matrix_support_configuration_default : "{{ lookup('template', 'templates/static-files/well-known/matrix-support.j2') }}"
matrix_well_known_matrix_support_configuration_extension_json : '{}'
matrix_well_known_matrix_support_configuration_extension : "{{ matrix_well_known_matrix_support_configuration_extension_json|from_json if matrix_well_known_matrix_support_configuration_extension_json|from_json is mapping else {} }}"
# Holds the final `/.well-known/matrix/support` configuration (a combination of the default and its extension).
# You most likely don't need to touch this variable. Instead, see `matrix_well_known_matrix_support_configuration_default` and `matrix_well_known_matrix_support_configuration_extension_json`.
matrix_well_known_matrix_support_configuration : "{{ matrix_well_known_matrix_support_configuration_default|combine(matrix_well_known_matrix_support_configuration_extension, recursive=True) }}"
2019-01-12 15:53:00 +00:00
# The Docker network that all services would be put into
matrix_docker_network : "matrix"
2020-06-14 07:00:22 +00:00
# Controls whether we'll preserve the vars.yml file on the Matrix server.
# If you have a differently organized inventory, you may wish to disable this feature,
# or to repoint `matrix_vars_yml_snapshotting_src` to the file you'd like to preserve.
matrix_vars_yml_snapshotting_enabled : true
matrix_vars_yml_snapshotting_src : "{{ inventory_dir }}/host_vars/{{ inventory_hostname }}/vars.yml"
2019-02-05 10:08:00 +00:00
# Controls whether a `/.well-known/matrix/server` file is generated and used at all.
#
# If you wish to rely on DNS SRV records only, you can disable this.
2019-02-14 16:40:55 +00:00
# Using DNS SRV records implies that you'll be handling Matrix Federation API traffic (tcp/8448)
2019-02-28 09:51:09 +00:00
# using certificates for the base domain (`matrix_domain`) and not for the
# matrix domain (`matrix_server_fqn_matrix`).
2019-02-05 10:08:00 +00:00
matrix_well_known_matrix_server_enabled : true
2022-07-18 09:32:38 +00:00
# Controls whether a `/.well-known/matrix/support` file is generated and used at all.
#
2022-07-18 09:54:45 +00:00
# This is not enabled by default, until the MSC gets accepted: https://github.com/matrix-org/matrix-spec-proposals/pull/1929
#
2022-07-18 09:32:38 +00:00
# See `matrix_homeserver_admin_contacts`, `matrix_homeserver_support_url`, etc.
2022-07-18 09:54:45 +00:00
matrix_well_known_matrix_support_enabled : false
2022-07-18 09:32:38 +00:00
2019-11-18 17:29:14 +00:00
# Controls whether Docker is automatically installed.
2020-08-05 15:35:25 +00:00
# If you change this to false you must install and update Docker manually. You also need to install the docker (https://pypi.org/project/docker/) Python package.
2019-11-18 17:20:01 +00:00
matrix_docker_installation_enabled : true
2019-11-18 17:29:14 +00:00
# Controls the Docker package that is installed.
# Possible values are "docker-ce" (default) and "docker.io" (Debian).
matrix_docker_package_name : docker-ce
2019-01-12 15:53:00 +00:00
# Variables to Control which parts of our roles run.
2019-07-08 05:55:08 +00:00
run_postgres_import : true
run_postgres_upgrade : true
run_postgres_import_sqlite_db : true
2019-07-08 06:38:24 +00:00
run_postgres_vacuum : true
2019-07-08 05:55:08 +00:00
run_synapse_register_user : true
run_synapse_update_user_password : true
run_synapse_import_media_store : true
2020-08-21 10:52:16 +00:00
run_synapse_rust_synapse_compress_state : true
2021-12-18 12:40:34 +00:00
run_dendrite_register_user : true
2019-01-12 15:53:00 +00:00
run_setup : true
2019-07-08 05:55:08 +00:00
run_self_check : true
2019-01-12 15:53:00 +00:00
run_start : true
2019-05-20 15:59:58 +00:00
run_stop : true