Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

460 строки
26 KiB

  1. # SPDX-FileCopyrightText: 2019 - 2021 Aaron Raimist
  2. # SPDX-FileCopyrightText: 2019 - 2025 Slavi Pantaleev
  3. # SPDX-FileCopyrightText: 2019 Dan Arnfield
  4. # SPDX-FileCopyrightText: 2019 Edgars Voroboks
  5. # SPDX-FileCopyrightText: 2019 Lyubomir Popov
  6. # SPDX-FileCopyrightText: 2019 Stuart Mumford
  7. # SPDX-FileCopyrightText: 2020 - 2024 MDAD project contributors
  8. # SPDX-FileCopyrightText: 2020 Alin Trăistaru
  9. # SPDX-FileCopyrightText: 2020 Chris van Dijk
  10. # SPDX-FileCopyrightText: 2020 Horvath Gergely
  11. # SPDX-FileCopyrightText: 2020 Tobias Küchel
  12. # SPDX-FileCopyrightText: 2021 Blaž Tomažič
  13. # SPDX-FileCopyrightText: 2021 Krisztian Szegi
  14. # SPDX-FileCopyrightText: 2021 Yannick Goossens
  15. # SPDX-FileCopyrightText: 2021 boris runakov
  16. # SPDX-FileCopyrightText: 2022 - 2025 Nikita Chernyi
  17. # SPDX-FileCopyrightText: 2022 Charles Wright
  18. # SPDX-FileCopyrightText: 2022 Julian Foad
  19. # SPDX-FileCopyrightText: 2022 Marko Weltzer
  20. # SPDX-FileCopyrightText: 2023 Benjamin Kampmann
  21. # SPDX-FileCopyrightText: 2023 Jayesh Nirve
  22. # SPDX-FileCopyrightText: 2023 Johan Swetzén
  23. # SPDX-FileCopyrightText: 2023 Pierre 'McFly' Marty
  24. # SPDX-FileCopyrightText: 2023 Samuel Meenzen
  25. # SPDX-FileCopyrightText: 2024 - 2025 Suguru Hirahara
  26. # SPDX-FileCopyrightText: 2024 László Várady
  27. #
  28. # SPDX-License-Identifier: AGPL-3.0-or-later
  29. ---
  30. # The bare domain name which represents your Matrix identity.
  31. # Matrix user IDs for your server will be of the form (`@alice:example.com`).
  32. #
  33. # Note: this playbook does not touch the server referenced here.
  34. # Installation happens on another server ("matrix.example.com", see `matrix_server_fqn_matrix`).
  35. #
  36. # Example value: example.com
  37. matrix_domain: ~
  38. # The optional Matrix admin MXID, used in bridges' configs to set bridge admin user
  39. # Example value: "@alice:{{ matrix_domain }}"
  40. matrix_admin: ''
  41. # Global var to enable/disable encryption across all bridges with encryption support
  42. matrix_bridges_encryption_enabled: false
  43. # Global var to make encryption default/optional across all bridges with encryption support
  44. matrix_bridges_encryption_default: "{{ matrix_bridges_encryption_enabled }}"
  45. # Global var for enabling msc4190 (On supported bridges)
  46. matrix_bridges_msc4190_enabled: "{{ matrix_authentication_service_enabled and matrix_bridges_encryption_enabled }}"
  47. # Global var for enabling bridge self-signing ( On supported bridges)
  48. matrix_bridges_self_sign_enabled: "{{ matrix_bridges_msc4190_enabled }}"
  49. # Global var to enable/disable relay mode across all bridges with relay mode support
  50. matrix_bridges_relay_enabled: false
  51. # A container network where all addon services (bridges, bots, etc.) would live.
  52. matrix_addons_container_network: matrix-addons
  53. # The container network that the homeserver lives on and addon services (bridges, bots, etc.) should be connected to
  54. matrix_addons_homeserver_container_network: "{{ matrix_homeserver_container_network }}"
  55. # The URL where addon services (bridges, bots, etc.) can reach the homeserver.
  56. # By default, this is configured to go directly to the homeserver, but the playbook may
  57. # override it to go through an intermediary service.
  58. matrix_addons_homeserver_client_api_url: "{{ matrix_homeserver_container_url }}"
  59. # The systemd services (representing the homeserver) that addon services (bridges, bots, etc.) should depend on
  60. matrix_addons_homeserver_systemd_services_list: "{{ matrix_homeserver_systemd_services_list }}"
  61. # A container network where all monitoring services would live.
  62. matrix_monitoring_container_network: matrix-monitoring
  63. # matrix_homeserver_enabled controls whether to enable the homeserver systemd service, etc.
  64. #
  65. # Unless you're wrapping this playbook in another one
  66. # where you optionally wish to disable homeserver integration, you don't need to use this.
  67. #
  68. # Note: disabling this does not mean that a homeserver won't get installed.
  69. # Whether homeserver software is installed depends on other (`matrix_HOMESERVER_enabled`) variables - see `group_vars/matrix_servers`.
  70. matrix_homeserver_enabled: true
  71. # This will contain the homeserver implementation that is in use.
  72. # Valid values: synapse, dendrite, conduit, continuwuity, tuwunel
  73. #
  74. # By default, we use Synapse, because it's the only full-featured Matrix server at the moment.
  75. #
  76. # This value automatically influences other variables (`matrix_synapse_enabled`, `matrix_dendrite_enabled`, etc.).
  77. # Note that the homeserver implementation of a server will not be able to be changed without data loss.
  78. matrix_homeserver_implementation: synapse
  79. # The priority that the homeserver starts with (lower = starts earlier).
  80. # Related to the systemd_service_manager role and `devture_systemd_service_manager_services_list*` variables.
  81. matrix_homeserver_systemd_service_manager_priority: 1000
  82. # This contains a secret, which is used for generating various other secrets later on.
  83. matrix_homeserver_generic_secret_key: ''
  84. # This is where your data lives and what we set up.
  85. # This and the Element FQN (see below) are expected to be on the same server.
  86. matrix_server_fqn_matrix: "matrix.{{ matrix_domain }}"
  87. # This is where you access federation API.
  88. matrix_server_fqn_matrix_federation: '{{ matrix_server_fqn_matrix }}'
  89. # This is where you access the Element Web from (if enabled via matrix_client_element_enabled; enabled by default).
  90. # This and the Matrix FQN (see above) are expected to be on the same server.
  91. matrix_server_fqn_element: "element.{{ matrix_domain }}"
  92. # This is where you access the Hydrogen web client from (if enabled via hydrogen_enabled; disabled by default).
  93. matrix_server_fqn_hydrogen: "hydrogen.{{ matrix_domain }}"
  94. # This is where you access the Cinny web client from (if enabled via cinny_enabled; disabled by default).
  95. matrix_server_fqn_cinny: "cinny.{{ matrix_domain }}"
  96. # This is where you access the Sable web client from (if enabled via sable_enabled; disabled by default).
  97. matrix_server_fqn_sable: "sable.{{ matrix_domain }}"
  98. # This is where you access the SchildiChat Web from (if enabled via matrix_client_schildichat_enabled; disabled by default).
  99. matrix_server_fqn_schildichat: "schildichat.{{ matrix_domain }}"
  100. # This is where you access the FluffyChat Web from (if enabled via matrix_client_fluffychat_enabled; disabled by default).
  101. matrix_server_fqn_fluffychat: "fluffychat.{{ matrix_domain }}"
  102. # This is where you access the Buscarron bot from (if enabled via matrix_bot_buscarron_enabled; disabled by default).
  103. matrix_server_fqn_buscarron: "buscarron.{{ matrix_domain }}"
  104. # This is where you access the Etherpad (if enabled via etherpad_enabled; disabled by default).
  105. matrix_server_fqn_etherpad: "etherpad.{{ matrix_domain }}"
  106. # This is where you access Jitsi.
  107. matrix_server_fqn_jitsi: "jitsi.{{ matrix_domain }}"
  108. # This is where you access Grafana.
  109. matrix_server_fqn_grafana: "stats.{{ matrix_domain }}"
  110. # This is where you access the Sygnal push gateway.
  111. matrix_server_fqn_sygnal: "sygnal.{{ matrix_domain }}"
  112. # This is where you access the mautrix wsproxy push gateway.
  113. matrix_server_fqn_mautrix_wsproxy: "wsproxy.{{ matrix_domain }}"
  114. # This is where you access the ntfy push notification service.
  115. matrix_server_fqn_ntfy: "ntfy.{{ matrix_domain }}"
  116. # This is where you access rageshake.
  117. matrix_server_fqn_rageshake: "rageshake.{{ matrix_domain }}"
  118. # This is where you access Matrix.to.
  119. matrix_server_fqn_matrixto: "mt.{{ matrix_domain }}"
  120. matrix_federation_public_port: 8448
  121. # The name of the Traefik entrypoint for handling Matrix Federation
  122. # Also see the `matrix_playbook_public_matrix_federation_api_traefik_entrypoint_*` variables.
  123. matrix_federation_traefik_entrypoint_name: matrix-federation
  124. # Controls whether the federation entrypoint supports TLS.
  125. # TLS is force-enabled here, because the spec (https://spec.matrix.org/v1.9/server-server-api/#tls) says that the federation API must use HTTPS.
  126. # This may be changed at the playbook level for setups explicitly disabling TLS.
  127. # `matrix_playbook_ssl_enabled` has no influence over this.
  128. matrix_federation_traefik_entrypoint_tls: true
  129. # The architecture that your server runs.
  130. # Recognized values by us are 'amd64', 'arm32' and 'arm64'.
  131. # Not all architectures support all services, so your experience (on non-amd64) may vary.
  132. # See docs/alternative-architectures.md
  133. matrix_architecture: "{{ 'amd64' if ansible_facts.architecture == 'x86_64' else ('arm64' if ansible_facts.architecture == 'aarch64' else ('arm32' if ansible_facts.architecture.startswith('armv') else '')) }}"
  134. # The architecture for Debian packages.
  135. # See: https://wiki.debian.org/SupportedArchitectures
  136. # We just remap from our `matrix_architecture` values to what Debian and possibly other distros call things.
  137. matrix_debian_arch: "{{ 'armhf' if matrix_architecture == 'arm32' else matrix_architecture }}"
  138. # If specified, the playbook will override the default registry prefix for all components.
  139. #
  140. # This is to be used when you've mirrored all the necessary container images (from their respective registries) by yourself.
  141. #
  142. # Example value: "registry.example.com/" (note the trailing `/`).
  143. matrix_container_global_registry_prefix_override: ""
  144. matrix_user_name: "matrix"
  145. matrix_user_system: true
  146. matrix_user_shell: /sbin/nologin
  147. matrix_group_name: "matrix"
  148. matrix_group_system: true
  149. # By default, the playbook creates the user (`matrix_user_name`)
  150. # and group (`matrix_group_name`) with a random ID.
  151. # To use a specific user/group ID, override these variables.
  152. matrix_user_uid: ~
  153. matrix_user_gid: ~
  154. # Controls Synology DSM-specific handling. `null` means autodetect (via /etc/synoinfo.conf).
  155. # Set to `true`/`false` to force.
  156. matrix_base_host_is_synology: ~
  157. # Password for the Matrix service account on Synology DSM.
  158. # Must be set to a non-empty value in your vars.yml when running on Synology.
  159. # The account is created as expired so the password cannot be used to log in.
  160. matrix_synology_user_password: ""
  161. # Version constraint for the requests Python package installed on Synology hosts.
  162. # requests >= 2.32 dropped the http+docker URL scheme used by the Docker SDK,
  163. # causing "Not supported URL scheme http+docker" errors. Installed into the
  164. # system Python interpreter (ansible_python_interpreter) on the remote host.
  165. matrix_base_synology_requests_version_constraint: "requests<2.32"
  166. matrix_base_data_path: "/matrix"
  167. matrix_base_data_path_mode: "750"
  168. matrix_bin_path: "{{ matrix_base_data_path }}/bin"
  169. matrix_host_command_sleep: "/usr/bin/env sleep"
  170. matrix_host_command_chown: "/usr/bin/env chown"
  171. matrix_host_command_fusermount: "/usr/bin/env fusermount"
  172. matrix_host_command_openssl: "/usr/bin/env openssl"
  173. matrix_homeserver_url: "{{ ('https' if matrix_playbook_ssl_enabled else 'http') }}://{{ matrix_server_fqn_matrix }}"
  174. # Specifies on which container network the homeserver is.
  175. matrix_homeserver_container_network: "matrix-homeserver"
  176. # Specifies whether the homeserver will federate at all.
  177. # Disable this to completely isolate your server from the rest of the Matrix network.
  178. matrix_homeserver_federation_enabled: true
  179. # Specifies which systemd services are responsible for the homeserver
  180. matrix_homeserver_systemd_services_list: []
  181. # Specifies where the homeserver's Client-Server API is on the container network (matrix_homeserver_container_network).
  182. # Most services that need to reach the homeserver do not use `matrix_homeserver_container_url`, but
  183. # rather `matrix_addons_homeserver_client_api_url`.
  184. matrix_homeserver_container_url: "http://{{ matrix_homeserver_container_client_api_endpoint }}"
  185. # Specifies where the homeserver's Client-Server API is on the container network (matrix_homeserver_container_network).
  186. # Where this is depends on whether there's a reverse-proxy in front of the homeserver, which homeserver it is, etc.
  187. # This likely gets overridden elsewhere.
  188. matrix_homeserver_container_client_api_endpoint: ""
  189. # Specifies where the homeserver's Federation API is on the container network (matrix_homeserver_container_network).
  190. matrix_homeserver_container_federation_url: "http://{{ matrix_homeserver_container_federation_api_endpoint }}"
  191. # Specifies where the homeserver's Federation API is on the container network (matrix_homeserver_container_network).
  192. # Where this is depends on whether there's a reverse-proxy in front of the homeserver, which homeserver it is, etc.
  193. # This likely gets overridden elsewhere.
  194. matrix_homeserver_container_federation_api_endpoint: ""
  195. matrix_identity_server_url: ~
  196. matrix_integration_manager_rest_url: ~
  197. matrix_integration_manager_ui_url: ~
  198. matrix_homeserver_container_extra_arguments_auto: []
  199. matrix_homeserver_app_service_config_files_auto: []
  200. # These playbook-level helpers describe which managed services Synapse should be wired to.
  201. # They are meant for orchestration concerns like container networking and systemd ordering,
  202. # while `matrix_synapse_*` variables stay focused on actual connection parameters.
  203. # These likely get overridden elsewhere.
  204. matrix_playbook_synapse_uses_managed_postgres: false
  205. matrix_playbook_synapse_uses_managed_valkey: false
  206. matrix_playbook_synapse_auto_compressor_uses_managed_postgres: false
  207. # This playbook-level helper describes whether Matrix Authentication Service should be wired
  208. # to the playbook-managed Postgres instance.
  209. # It is meant for orchestration concerns like container networking, systemd ordering, and database creation,
  210. # while `matrix_authentication_service_*` variables stay focused on actual connection parameters.
  211. # This likely gets overridden elsewhere.
  212. matrix_playbook_matrix_authentication_service_uses_managed_postgres: false
  213. # Controls whether various services should expose metrics publicly.
  214. # If Prometheus is operating on the same machine, exposing metrics publicly is not necessary.
  215. matrix_metrics_exposure_enabled: false
  216. matrix_metrics_exposure_hostname: "{{ matrix_server_fqn_matrix }}"
  217. matrix_metrics_exposure_path_prefix: /metrics
  218. matrix_metrics_exposure_http_basic_auth_enabled: false
  219. # See https://doc.traefik.io/traefik/middlewares/http/basicauth/#users
  220. matrix_metrics_exposure_http_basic_auth_users: ''
  221. # Specifies the type of reverse-proxy used by the playbook.
  222. #
  223. # Changing this has an effect on whether a reverse-proxy is installed at all and what its type is,
  224. # as well as how all other services are configured.
  225. #
  226. # Valid options and a description of their behavior:
  227. #
  228. # - `playbook-managed-traefik`
  229. # - the playbook will run a managed Traefik instance (matrix-traefik)
  230. # - Traefik will do SSL termination, unless you disable it (e.g. `traefik_config_entrypoint_web_secure_enabled: false`)
  231. #
  232. # - `other-traefik-container`
  233. # - this playbook will not install Traefik
  234. # - nevertheless, the playbook expects that you would install Traefik yourself via other means
  235. # - you should make sure your Traefik configuration is compatible with what the playbook would have configured (web, web-secure, matrix-federation entrypoints, etc.)
  236. # - you need to set `matrix_playbook_reverse_proxyable_services_additional_network` to the name of your Traefik network
  237. # - Traefik certs dumper will be enabled by default (`traefik_certs_dumper_enabled`). You need to point it to your Traefik's SSL certificates (`traefik_certs_dumper_ssl_path`)
  238. #
  239. # - `none`
  240. # - no reverse-proxy will be installed
  241. # - no port exposure will be done for any of the container services
  242. # - it's up to you to expose the ports you want, etc.
  243. # - this is unlikely to work well (if at all)
  244. matrix_playbook_reverse_proxy_type: ''
  245. # Specifies the network that the reverse-proxy is operating at
  246. matrix_playbook_reverse_proxy_container_network: "{{ 'traefik' if matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] else '' }}"
  247. # Specifies the hostname that the reverse-proxy is available at
  248. matrix_playbook_reverse_proxy_hostname: 'matrix-traefik'
  249. # Specifies whether the Traefik reverse-proxy (if `matrix_playbook_reverse_proxy_type` indicates that Traefik is being used) defines a compression middleware.
  250. matrix_playbook_reverse_proxy_traefik_middleware_compression_enabled: false
  251. # Specifies the name of the compression middleware defined for the Traefik reverse-proxy (if `matrix_playbook_reverse_proxy_type` indicates that Traefik is being used).
  252. # It's better to use a fully-qualified middleware name (e.g. `compression@docker` or `compression@file`) here to prevent ambiguity.
  253. matrix_playbook_reverse_proxy_traefik_middleware_compression_name: ''
  254. # Controls the additional network that reverse-proxyable services will be connected to.
  255. matrix_playbook_reverse_proxyable_services_additional_network: "{{ matrix_playbook_reverse_proxy_container_network }}"
  256. # Controls if various services think if SSL is enabled or not.
  257. # Disabling this does not actually disable Treafik's web-secure entrypoint and TLS termination settings.
  258. # For that, you'd need to use another variable (`traefik_config_entrypoint_web_secure_enabled`).
  259. # This variable merely serves as an indicator if SSL is used or not.
  260. matrix_playbook_ssl_enabled: true
  261. # Controls on which network interface services are exposed.
  262. # You can use this to tell all services to expose themselves on the loopback interface, on a local network IP or or publicly.
  263. # Possibly not all services support exposure via this variable.
  264. # We recommend not using it.
  265. #
  266. # Example value: `127.0.0.1:` (note the trailing `:`).
  267. matrix_playbook_service_host_bind_interface_prefix: ""
  268. # Controls whether to enable an additional Traefik entrypoint for the purpose of serving Matrix Federation.
  269. # By default, federation is served on a special port (8448), so a separate entrypoint is necessary.
  270. # Group variables may influence whether this is enabled based on the port number and on the default entrypoints of the Traefik reverse-proxy.
  271. matrix_playbook_public_matrix_federation_api_traefik_entrypoint_enabled: true
  272. matrix_playbook_public_matrix_federation_api_traefik_entrypoint_name: "{{ matrix_federation_traefik_entrypoint_name }}"
  273. matrix_playbook_public_matrix_federation_api_traefik_entrypoint_port: "{{ matrix_federation_public_port }}"
  274. matrix_playbook_public_matrix_federation_api_traefik_entrypoint_host_bind_port: "{{ matrix_federation_public_port }}"
  275. matrix_playbook_public_matrix_federation_api_traefik_entrypoint_host_bind_port_udp: "{{ matrix_playbook_public_matrix_federation_api_traefik_entrypoint_config_http3_advertisedPort if matrix_playbook_public_matrix_federation_api_traefik_entrypoint_config_http3_enabled else '' }}"
  276. matrix_playbook_public_matrix_federation_api_traefik_entrypoint_config: "{{ (matrix_playbook_public_matrix_federation_api_traefik_entrypoint_config_default | combine(matrix_playbook_public_matrix_federation_api_traefik_entrypoint_config_auto)) | combine(matrix_playbook_public_matrix_federation_api_traefik_entrypoint_config_custom, recursive=True) }}"
  277. matrix_playbook_public_matrix_federation_api_traefik_entrypoint_config_http3_enabled: true
  278. matrix_playbook_public_matrix_federation_api_traefik_entrypoint_config_http3_advertisedPort: "{{ matrix_playbook_public_matrix_federation_api_traefik_entrypoint_port }}" # noqa var-naming
  279. matrix_playbook_public_matrix_federation_api_traefik_entrypoint_config_transport_respondingTimeouts_readTimeout: "{{ traefik_config_entrypoint_web_secure_transport_respondingTimeouts_readTimeout }}" # noqa var-naming
  280. matrix_playbook_public_matrix_federation_api_traefik_entrypoint_config_transport_respondingTimeouts_writeTimeout: "{{ traefik_config_entrypoint_web_secure_transport_respondingTimeouts_writeTimeout }}" # noqa var-naming
  281. matrix_playbook_public_matrix_federation_api_traefik_entrypoint_config_transport_respondingTimeouts_idleTimeout: "{{ traefik_config_entrypoint_web_secure_transport_respondingTimeouts_idleTimeout }}" # noqa var-naming
  282. matrix_playbook_public_matrix_federation_api_traefik_entrypoint_config_default: |
  283. {{
  284. {}
  285. | combine(
  286. (
  287. (
  288. {
  289. 'http3': {
  290. 'advertisedPort': matrix_playbook_public_matrix_federation_api_traefik_entrypoint_config_http3_advertisedPort | int
  291. }
  292. }
  293. )
  294. if matrix_playbook_public_matrix_federation_api_traefik_entrypoint_config_http3_enabled
  295. else {}
  296. )
  297. )
  298. | combine(
  299. {
  300. 'transport': {
  301. 'respondingTimeouts': {
  302. 'readTimeout': matrix_playbook_public_matrix_federation_api_traefik_entrypoint_config_transport_respondingTimeouts_readTimeout,
  303. 'writeTimeout': matrix_playbook_public_matrix_federation_api_traefik_entrypoint_config_transport_respondingTimeouts_writeTimeout,
  304. 'idleTimeout': matrix_playbook_public_matrix_federation_api_traefik_entrypoint_config_transport_respondingTimeouts_idleTimeout,
  305. }
  306. }
  307. }
  308. )
  309. }}
  310. matrix_playbook_public_matrix_federation_api_traefik_entrypoint_config_auto: {}
  311. matrix_playbook_public_matrix_federation_api_traefik_entrypoint_config_custom: {}
  312. matrix_playbook_public_matrix_federation_api_traefik_entrypoint_definition:
  313. name: "{{ matrix_playbook_public_matrix_federation_api_traefik_entrypoint_name }}"
  314. port: "{{ matrix_playbook_public_matrix_federation_api_traefik_entrypoint_port }}"
  315. host_bind_port: "{{ matrix_playbook_public_matrix_federation_api_traefik_entrypoint_host_bind_port }}"
  316. host_bind_port_udp: "{{ matrix_playbook_public_matrix_federation_api_traefik_entrypoint_host_bind_port_udp }}"
  317. config: "{{ matrix_playbook_public_matrix_federation_api_traefik_entrypoint_config }}"
  318. # Controls whether to enable an additional Traefik entrypoint for the purpose of serving the homeserver's Client-Server API internally.
  319. #
  320. # Homeserver software and other core components which are part of the homeserver's Client-Server API
  321. # may wish to register their routes with this additional entrypoint and provide their services on it for internal (no-public-network and non-TLS) use.
  322. #
  323. # This entrypoint provides local addons (e.g. bridges, bots, etc.) with the ability to easily & quickly communicate with the homeserver and/or related software.
  324. # Such services can reach the homeserver over the public internet (e.g. https://matrix.example.com), but this is slow due to networking and SSL-termination.
  325. # Talking directly to the homeserver (e.g. `http://matrix-synapse:8008`) is another option, but does not allow other homeserver-related software
  326. # (e.g. media repository servers like matrix-media-repo, firewalls like matrix-corporal)
  327. # to register itself for certain homeserver routes.
  328. #
  329. # For example: when matrix-media-repo is enabled, it wishes to handle `/_matrix/media` both publicly and internally.
  330. # Bots/bridges that try to upload media should not hit `/_matrix/media` on the homeserver directly, but actually go through matrix-media-repo.
  331. #
  332. # This entrypoint gives us a layer of indirection, so that all these homeserver-related services can register themselves on this entrypoint
  333. # the same way they register themselves for the public (e.g. `web-secure`) entrypoint.
  334. #
  335. # Routers enabled on this entrypoint should use Traefik rules which do NOT do Host-matching (Host/HostRegexp),
  336. # because addon services (e.g. bridges, bots) cannot properly pass a `Host` HTTP header when making
  337. # requests to the endpoint's address (e.g. `http://matrix-traefik:8008/`).
  338. # This entrypoint only aims to handle a single "virtual host" - one dealing with the homeserver's Client-Server API.
  339. matrix_playbook_internal_matrix_client_api_traefik_entrypoint_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  340. matrix_playbook_internal_matrix_client_api_traefik_entrypoint_name: matrix-internal-matrix-client-api
  341. matrix_playbook_internal_matrix_client_api_traefik_entrypoint_port: 8008
  342. matrix_playbook_internal_matrix_client_api_traefik_entrypoint_host_bind_port: ''
  343. matrix_playbook_internal_matrix_client_api_traefik_entrypoint_config: "{{ (matrix_playbook_internal_matrix_client_api_traefik_entrypoint_config_default | combine(matrix_playbook_internal_matrix_client_api_traefik_entrypoint_config_auto)) | combine(matrix_playbook_internal_matrix_client_api_traefik_entrypoint_config_custom, recursive=True) }}"
  344. matrix_playbook_internal_matrix_client_api_traefik_entrypoint_config_default: {}
  345. matrix_playbook_internal_matrix_client_api_traefik_entrypoint_config_auto: {}
  346. matrix_playbook_internal_matrix_client_api_traefik_entrypoint_config_custom: {}
  347. matrix_playbook_internal_matrix_client_api_traefik_entrypoint_definition:
  348. name: "{{ matrix_playbook_internal_matrix_client_api_traefik_entrypoint_name }}"
  349. port: "{{ matrix_playbook_internal_matrix_client_api_traefik_entrypoint_port }}"
  350. host_bind_port: "{{ matrix_playbook_internal_matrix_client_api_traefik_entrypoint_host_bind_port }}"
  351. config: "{{ matrix_playbook_internal_matrix_client_api_traefik_entrypoint_config }}"
  352. # Controls whether to enable an additional Traefik entrypoint for LiveKit TURN/TLS (TCP) traffic.
  353. matrix_playbook_livekit_turn_traefik_entrypoint_enabled: false
  354. matrix_playbook_livekit_turn_traefik_entrypoint_name: matrix-livekit-turn
  355. matrix_playbook_livekit_turn_traefik_entrypoint_port: 5350
  356. matrix_playbook_livekit_turn_traefik_entrypoint_host_bind_port: "{{ matrix_playbook_livekit_turn_traefik_entrypoint_port }}"
  357. matrix_playbook_livekit_turn_traefik_entrypoint_config: "{{ (matrix_playbook_livekit_turn_traefik_entrypoint_config_default | combine(matrix_playbook_livekit_turn_traefik_entrypoint_config_auto)) | combine(matrix_playbook_livekit_turn_traefik_entrypoint_config_custom, recursive=True) }}"
  358. matrix_playbook_livekit_turn_traefik_entrypoint_config_default: {}
  359. matrix_playbook_livekit_turn_traefik_entrypoint_config_auto: {}
  360. matrix_playbook_livekit_turn_traefik_entrypoint_config_custom: {}
  361. matrix_playbook_livekit_turn_traefik_entrypoint_definition:
  362. name: "{{ matrix_playbook_livekit_turn_traefik_entrypoint_name }}"
  363. port: "{{ matrix_playbook_livekit_turn_traefik_entrypoint_port }}"
  364. host_bind_port: "{{ matrix_playbook_livekit_turn_traefik_entrypoint_host_bind_port }}"
  365. config: "{{ matrix_playbook_livekit_turn_traefik_entrypoint_config }}"
  366. # Variables to Control which parts of our roles run.
  367. run_postgres_import: true
  368. run_postgres_upgrade: true
  369. run_postgres_import_sqlite_db: true
  370. run_postgres_vacuum: true
  371. run_synapse_register_user: true
  372. run_synapse_update_user_password: true
  373. run_synapse_import_media_store: true
  374. run_synapse_rust_synapse_compress_state: true
  375. run_dendrite_register_user: true
  376. run_setup: true
  377. run_self_check: true
  378. run_start: true
  379. run_stop: true