Matrix Docker Ansible eploy
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 

376 řádky
21 KiB

  1. ---
  2. # The bare domain name which represents your Matrix identity.
  3. # Matrix user IDs for your server will be of the form (`@alice:example.com`).
  4. #
  5. # Note: this playbook does not touch the server referenced here.
  6. # Installation happens on another server ("matrix.example.com", see `matrix_server_fqn_matrix`).
  7. #
  8. # Example value: example.com
  9. matrix_domain: ~
  10. # The optional Matrix admin MXID, used in bridges' configs to set bridge admin user
  11. # Example value: "@alice:{{ matrix_domain }}"
  12. matrix_admin: ''
  13. # Global var to enable/disable encryption across all bridges with encryption support
  14. matrix_bridges_encryption_enabled: false
  15. # Global var to make encryption default/optional across all bridges with encryption support
  16. matrix_bridges_encryption_default: "{{ matrix_bridges_encryption_enabled }}"
  17. # Global var to enable/disable relay mode across all bridges with relay mode support
  18. matrix_bridges_relay_enabled: false
  19. # A container network where all addon services (bridges, bots, etc.) would live.
  20. matrix_addons_container_network: matrix-addons
  21. # The container network that the homeserver lives on and addon services (bridges, bots, etc.) should be connected to
  22. matrix_addons_homeserver_container_network: "{{ matrix_homeserver_container_network }}"
  23. # The URL where addon services (bridges, bots, etc.) can reach the homeserver.
  24. # By default, this is configured to go directly to the homeserver, but the playbook may
  25. # override it to go through an intermediary service.
  26. matrix_addons_homeserver_client_api_url: "{{ matrix_homeserver_container_url }}"
  27. # The systemd services (representing the homeserver) that addon services (bridges, bots, etc.) should depend on
  28. matrix_addons_homeserver_systemd_services_list: "{{ matrix_homeserver_systemd_services_list }}"
  29. # A container network where all monitoring services would live.
  30. matrix_monitoring_container_network: matrix-monitoring
  31. # matrix_homeserver_enabled controls whether to enable the homeserver systemd service, etc.
  32. #
  33. # Unless you're wrapping this playbook in another one
  34. # where you optionally wish to disable homeserver integration, you don't need to use this.
  35. #
  36. # Note: disabling this does not mean that a homeserver won't get installed.
  37. # Whether homeserver software is installed depends on other (`matrix_HOMESERVER_enabled`) variables - see `group_vars/matrix_servers`.
  38. matrix_homeserver_enabled: true
  39. # This will contain the homeserver implementation that is in use.
  40. # Valid values: synapse, dendrite, conduit, conduwuit
  41. #
  42. # By default, we use Synapse, because it's the only full-featured Matrix server at the moment.
  43. #
  44. # This value automatically influences other variables (`matrix_synapse_enabled`, `matrix_dendrite_enabled`, etc.).
  45. # Note that the homeserver implementation of a server will not be able to be changed without data loss.
  46. matrix_homeserver_implementation: synapse
  47. # This contains a secret, which is used for generating various other secrets later on.
  48. matrix_homeserver_generic_secret_key: ''
  49. # This is where your data lives and what we set up.
  50. # This and the Element FQN (see below) are expected to be on the same server.
  51. matrix_server_fqn_matrix: "matrix.{{ matrix_domain }}"
  52. # This is where you access federation API.
  53. matrix_server_fqn_matrix_federation: '{{ matrix_server_fqn_matrix }}'
  54. # This is where you access the Element Web from (if enabled via matrix_client_element_enabled; enabled by default).
  55. # This and the Matrix FQN (see above) are expected to be on the same server.
  56. matrix_server_fqn_element: "element.{{ matrix_domain }}"
  57. # This is where you access the Hydrogen web client from (if enabled via matrix_client_hydrogen_enabled; disabled by default).
  58. matrix_server_fqn_hydrogen: "hydrogen.{{ matrix_domain }}"
  59. # This is where you access the Cinny web client from (if enabled via matrix_client_cinny_enabled; disabled by default).
  60. matrix_server_fqn_cinny: "cinny.{{ matrix_domain }}"
  61. # This is where you access the SchildiChat Web from (if enabled via matrix_client_schildichat_enabled; disabled by default).
  62. matrix_server_fqn_schildichat: "schildichat.{{ matrix_domain }}"
  63. # This is where you access the FluffyChat Web from (if enabled via matrix_client_fluffychat_enabled; disabled by default).
  64. matrix_server_fqn_fluffychat: "fluffychat.{{ matrix_domain }}"
  65. # This is where you access the Buscarron bot from (if enabled via matrix_bot_buscarron_enabled; disabled by default).
  66. matrix_server_fqn_buscarron: "buscarron.{{ matrix_domain }}"
  67. # This is where you access the Dimension.
  68. matrix_server_fqn_dimension: "dimension.{{ matrix_domain }}"
  69. # This is where you access the Etherpad (if enabled via etherpad_enabled; disabled by default).
  70. matrix_server_fqn_etherpad: "etherpad.{{ matrix_domain }}"
  71. # For use with Go-NEB! (github callback url for example)
  72. matrix_server_fqn_bot_go_neb: "goneb.{{ matrix_domain }}"
  73. # This is where you access Jitsi.
  74. matrix_server_fqn_jitsi: "jitsi.{{ matrix_domain }}"
  75. # This is where you access Grafana.
  76. matrix_server_fqn_grafana: "stats.{{ matrix_domain }}"
  77. # This is where you access the Sygnal push gateway.
  78. matrix_server_fqn_sygnal: "sygnal.{{ matrix_domain }}"
  79. # This is where you access the mautrix wsproxy push gateway.
  80. matrix_server_fqn_mautrix_wsproxy: "wsproxy.{{ matrix_domain }}"
  81. # This is where you access the ntfy push notification service.
  82. matrix_server_fqn_ntfy: "ntfy.{{ matrix_domain }}"
  83. # This is where you access rageshake.
  84. matrix_server_fqn_rageshake: "rageshake.{{ matrix_domain }}"
  85. matrix_federation_public_port: 8448
  86. # The name of the Traefik entrypoint for handling Matrix Federation
  87. # Also see the `matrix_playbook_public_matrix_federation_api_traefik_entrypoint_*` variables.
  88. matrix_federation_traefik_entrypoint_name: matrix-federation
  89. # Controls whether the federation entrypoint supports TLS.
  90. # 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.
  91. # This may be changed at the playbook level for setups explicitly disabling TLS.
  92. # `matrix_playbook_ssl_enabled` has no influence over this.
  93. matrix_federation_traefik_entrypoint_tls: true
  94. # The architecture that your server runs.
  95. # Recognized values by us are 'amd64', 'arm32' and 'arm64'.
  96. # Not all architectures support all services, so your experience (on non-amd64) may vary.
  97. # See docs/alternative-architectures.md
  98. matrix_architecture: "{{ 'amd64' if ansible_architecture == 'x86_64' else ('arm64' if ansible_architecture == 'aarch64' else ('arm32' if ansible_architecture.startswith('armv') else '')) }}"
  99. # The architecture for Debian packages.
  100. # See: https://wiki.debian.org/SupportedArchitectures
  101. # We just remap from our `matrix_architecture` values to what Debian and possibly other distros call things.
  102. matrix_debian_arch: "{{ 'armhf' if matrix_architecture == 'arm32' else matrix_architecture }}"
  103. # If specified, the playbook will override the default registry prefix for all components.
  104. #
  105. # This is to be used when you've mirrored all the necessary container images (from their respective registries) by yourself.
  106. #
  107. # Example value: "registry.example.com/" (note the trailing `/`).
  108. matrix_container_global_registry_prefix_override: ""
  109. matrix_user_username: "matrix"
  110. matrix_user_groupname: "matrix"
  111. # By default, the playbook creates the user (`matrix_user_username`)
  112. # and group (`matrix_user_groupname`) with a random ID.
  113. # To use a specific user/group ID, override these variables.
  114. matrix_user_uid: ~
  115. matrix_user_gid: ~
  116. matrix_base_data_path: "/matrix"
  117. matrix_base_data_path_mode: "750"
  118. matrix_bin_path: "{{ matrix_base_data_path }}/bin"
  119. matrix_host_command_sleep: "/usr/bin/env sleep"
  120. matrix_host_command_chown: "/usr/bin/env chown"
  121. matrix_host_command_fusermount: "/usr/bin/env fusermount"
  122. matrix_host_command_openssl: "/usr/bin/env openssl"
  123. matrix_homeserver_url: "{{ ('https' if matrix_playbook_ssl_enabled else 'http') }}://{{ matrix_server_fqn_matrix }}"
  124. # Specifies on which container network the homeserver is.
  125. matrix_homeserver_container_network: "matrix-homeserver"
  126. # Specifies whether the homeserver will federate at all.
  127. # Disable this to completely isolate your server from the rest of the Matrix network.
  128. matrix_homeserver_federation_enabled: true
  129. # Specifies which systemd services are responsible for the homeserver
  130. matrix_homeserver_systemd_services_list: []
  131. # Specifies where the homeserver's Client-Server API is on the container network (matrix_homeserver_container_network).
  132. # Most services that need to reach the homeserver do not use `matrix_homeserver_container_url`, but
  133. # rather `matrix_addons_homeserver_client_api_url`.
  134. matrix_homeserver_container_url: "http://{{ matrix_homeserver_container_client_api_endpoint }}"
  135. # Specifies where the homeserver's Client-Server API is on the container network (matrix_homeserver_container_network).
  136. # Where this is depends on whether there's a reverse-proxy in front of the homeserver, which homeserver it is, etc.
  137. # This likely gets overriden elsewhere.
  138. matrix_homeserver_container_client_api_endpoint: ""
  139. # Specifies where the homeserver's Federation API is on the container network (matrix_homeserver_container_network).
  140. matrix_homeserver_container_federation_url: "http://{{ matrix_homeserver_container_federation_api_endpoint }}"
  141. # Specifies where the homeserver's Federation API is on the container network (matrix_homeserver_container_network).
  142. # Where this is depends on whether there's a reverse-proxy in front of the homeserver, which homeserver it is, etc.
  143. # This likely gets overriden elsewhere.
  144. matrix_homeserver_container_federation_api_endpoint: ""
  145. # Specifies the public url of the Sync v3 (sliding-sync) API.
  146. # This will be used to set the `org.matrix.msc3575.proxy` property in `/.well-known/matrix/client`.
  147. # Once the API is stabilized, this will no longer be required.
  148. # See MSC3575: https://github.com/matrix-org/matrix-spec-proposals/blob/kegan/sync-v3/proposals/3575-sync.md
  149. matrix_homeserver_sliding_sync_url: ""
  150. matrix_identity_server_url: ~
  151. matrix_integration_manager_rest_url: ~
  152. matrix_integration_manager_ui_url: ~
  153. matrix_homeserver_container_extra_arguments_auto: []
  154. matrix_homeserver_app_service_config_files_auto: []
  155. # Controls whether various services should expose metrics publicly.
  156. # If Prometheus is operating on the same machine, exposing metrics publicly is not necessary.
  157. matrix_metrics_exposure_enabled: false
  158. matrix_metrics_exposure_hostname: "{{ matrix_server_fqn_matrix }}"
  159. matrix_metrics_exposure_path_prefix: /metrics
  160. matrix_metrics_exposure_http_basic_auth_enabled: false
  161. # See https://doc.traefik.io/traefik/middlewares/http/basicauth/#users
  162. matrix_metrics_exposure_http_basic_auth_users: ''
  163. # Specifies the type of reverse-proxy used by the playbook.
  164. #
  165. # Changing this has an effect on whether a reverse-proxy is installed at all and what its type is,
  166. # as well as how all other services are configured.
  167. #
  168. # Valid options and a description of their behavior:
  169. #
  170. # - `playbook-managed-traefik`
  171. # - the playbook will run a managed Traefik instance (matrix-traefik)
  172. # - Traefik will do SSL termination, unless you disable it (e.g. `traefik_config_entrypoint_web_secure_enabled: false`)
  173. #
  174. # - `other-traefik-container`
  175. # - this playbook will not install Traefik
  176. # - nevertheless, the playbook expects that you would install Traefik yourself via other means
  177. # - you should make sure your Traefik configuration is compatible with what the playbook would have configured (web, web-secure, matrix-federation entrypoints, etc.)
  178. # - you need to set `matrix_playbook_reverse_proxyable_services_additional_network` to the name of your Traefik network
  179. # - 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_dir_path`)
  180. #
  181. # - `none`
  182. # - no reverse-proxy will be installed
  183. # - no port exposure will be done for any of the container services
  184. # - it's up to you to expose the ports you want, etc.
  185. # - this is unlikely to work well (if at all)
  186. matrix_playbook_reverse_proxy_type: ''
  187. # Specifies the network that the reverse-proxy is operating at
  188. matrix_playbook_reverse_proxy_container_network: "{{ 'traefik' if matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] else '' }}"
  189. # Specifies the hostname that the reverse-proxy is available at
  190. matrix_playbook_reverse_proxy_hostname: 'matrix-traefik'
  191. # Specifies whether the Traefik reverse-proxy (if `matrix_playbook_reverse_proxy_type` indicates that Traefik is being used) defines a compression middleware.
  192. matrix_playbook_reverse_proxy_traefik_middleware_compression_enabled: false
  193. # 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).
  194. # It's better to use a fully-qualified middleware name (e.g. `compression@docker` or `compression@file`) here to prevent ambiguity.
  195. matrix_playbook_reverse_proxy_traefik_middleware_compression_name: ''
  196. # Controls the additional network that reverse-proxyable services will be connected to.
  197. matrix_playbook_reverse_proxyable_services_additional_network: "{{ matrix_playbook_reverse_proxy_container_network }}"
  198. # Controls if various services think if SSL is enabled or not.
  199. # Disabling this does not actually disable Treafik's web-secure entrypoint and TLS termination settings.
  200. # For that, you'd need to use another variable (`traefik_config_entrypoint_web_secure_enabled`).
  201. # This variable merely serves as an indicator if SSL is used or not.
  202. matrix_playbook_ssl_enabled: true
  203. # Controls on which network interface services are exposed.
  204. # You can use this to tell all services to expose themselves on the loopback interface, on a local network IP or or publicly.
  205. # Possibly not all services support exposure via this variable.
  206. # We recommend not using it.
  207. #
  208. # Example value: `127.0.0.1:` (note the trailing `:`).
  209. matrix_playbook_service_host_bind_interface_prefix: ""
  210. # Controls whether to enable an additional Traefik entrypoint for the purpose of serving Matrix Federation.
  211. # By default, federation is served on a special port (8448), so a separate entrypoint is necessary.
  212. # Group variables may influence whether this is enabled based on the port number and on the default entrypoints of the Traefik reverse-proxy.
  213. matrix_playbook_public_matrix_federation_api_traefik_entrypoint_enabled: true
  214. matrix_playbook_public_matrix_federation_api_traefik_entrypoint_name: "{{ matrix_federation_traefik_entrypoint_name }}"
  215. matrix_playbook_public_matrix_federation_api_traefik_entrypoint_port: "{{ matrix_federation_public_port }}"
  216. matrix_playbook_public_matrix_federation_api_traefik_entrypoint_host_bind_port: "{{ matrix_federation_public_port }}"
  217. 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 '' }}"
  218. 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) }}"
  219. matrix_playbook_public_matrix_federation_api_traefik_entrypoint_config_http3_enabled: true
  220. matrix_playbook_public_matrix_federation_api_traefik_entrypoint_config_http3_advertisedPort: "{{ matrix_playbook_public_matrix_federation_api_traefik_entrypoint_port }}" # noqa var-naming
  221. matrix_playbook_public_matrix_federation_api_traefik_entrypoint_config_transport_respondingTimeouts_readTimeout: "{{ traefik_config_entrypoint_web_secure_transport_respondingTimeouts_readTimeout }}" # noqa var-naming
  222. matrix_playbook_public_matrix_federation_api_traefik_entrypoint_config_transport_respondingTimeouts_writeTimeout: "{{ traefik_config_entrypoint_web_secure_transport_respondingTimeouts_writeTimeout }}" # noqa var-naming
  223. matrix_playbook_public_matrix_federation_api_traefik_entrypoint_config_transport_respondingTimeouts_idleTimeout: "{{ traefik_config_entrypoint_web_secure_transport_respondingTimeouts_idleTimeout }}" # noqa var-naming
  224. matrix_playbook_public_matrix_federation_api_traefik_entrypoint_config_default: |
  225. {{
  226. {}
  227. | combine(
  228. (
  229. (
  230. {
  231. 'http3': {
  232. 'advertisedPort': matrix_playbook_public_matrix_federation_api_traefik_entrypoint_config_http3_advertisedPort | int
  233. }
  234. }
  235. )
  236. if matrix_playbook_public_matrix_federation_api_traefik_entrypoint_config_http3_enabled
  237. else {}
  238. )
  239. )
  240. | combine(
  241. {
  242. 'transport': {
  243. 'respondingTimeouts': {
  244. 'readTimeout': matrix_playbook_public_matrix_federation_api_traefik_entrypoint_config_transport_respondingTimeouts_readTimeout,
  245. 'writeTimeout': matrix_playbook_public_matrix_federation_api_traefik_entrypoint_config_transport_respondingTimeouts_writeTimeout,
  246. 'idleTimeout': matrix_playbook_public_matrix_federation_api_traefik_entrypoint_config_transport_respondingTimeouts_idleTimeout,
  247. }
  248. }
  249. }
  250. )
  251. }}
  252. matrix_playbook_public_matrix_federation_api_traefik_entrypoint_config_auto: {}
  253. matrix_playbook_public_matrix_federation_api_traefik_entrypoint_config_custom: {}
  254. matrix_playbook_public_matrix_federation_api_traefik_entrypoint_definition:
  255. name: "{{ matrix_playbook_public_matrix_federation_api_traefik_entrypoint_name }}"
  256. port: "{{ matrix_playbook_public_matrix_federation_api_traefik_entrypoint_port }}"
  257. host_bind_port: "{{ matrix_playbook_public_matrix_federation_api_traefik_entrypoint_host_bind_port }}"
  258. host_bind_port_udp: "{{ matrix_playbook_public_matrix_federation_api_traefik_entrypoint_host_bind_port_udp }}"
  259. config: "{{ matrix_playbook_public_matrix_federation_api_traefik_entrypoint_config }}"
  260. # Controls whether to enable an additional Traefik entrypoint for the purpose of serving the homeserver's Client-Server API internally.
  261. #
  262. # Homeserver software and other core components which are part of the homeserver's Client-Server API
  263. # 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.
  264. #
  265. # This entrypoint provides local addons (e.g. bridges, bots, etc.) with the ability to easily & quickly communicate with the homeserver and/or related software.
  266. # 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.
  267. # Talking directly to the homeserver (e.g. `http://matrix-synapse:8008`) is another option, but does not allow other homeserver-related software
  268. # (e.g. identity servers like ma1sd, media repository servers like matrix-media-repo, firewalls like matrix-corporal)
  269. # to register itself for certain homeserver routes.
  270. #
  271. # For example: when matrix-media-repo is enabled, it wishes to handle `/_matrix/media` both publicly and internally.
  272. # Bots/bridges that try to upload media should not hit `/_matrix/media` on the homeserver directly, but actually go through matrix-media-repo.
  273. #
  274. # This entrypoint gives us a layer of indirection, so that all these homeserver-related services can register themselves on this entrypoint
  275. # the same way they register themselves for the public (e.g. `web-secure`) entrypoint.
  276. #
  277. # Routers enabled on this entrypoint should use Traefik rules which do NOT do Host-matching (Host/HostRegexp),
  278. # because addon services (e.g. bridges, bots) cannot properly pass a `Host` HTTP header when making
  279. # requests to the endpoint's address (e.g. `http://matrix-traefik:8008/`).
  280. # This entrypoint only aims to handle a single "virtual host" - one dealing with the homeserver's Client-Server API.
  281. matrix_playbook_internal_matrix_client_api_traefik_entrypoint_enabled: "{{ matrix_playbook_reverse_proxy_type in ['playbook-managed-traefik', 'other-traefik-container'] }}"
  282. matrix_playbook_internal_matrix_client_api_traefik_entrypoint_name: matrix-internal-matrix-client-api
  283. matrix_playbook_internal_matrix_client_api_traefik_entrypoint_port: 8008
  284. matrix_playbook_internal_matrix_client_api_traefik_entrypoint_host_bind_port: ''
  285. matrix_playbook_internal_matrix_client_api_traefik_entrypoint_config: "{{ matrix_playbook_internal_matrix_client_api_traefik_entrypoint_config_auto | combine(matrix_playbook_internal_matrix_client_api_traefik_entrypoint_config_custom, recursive=True) }}"
  286. matrix_playbook_internal_matrix_client_api_traefik_entrypoint_config_auto: {}
  287. matrix_playbook_internal_matrix_client_api_traefik_entrypoint_config_custom: {}
  288. matrix_playbook_internal_matrix_client_api_traefik_entrypoint_definition:
  289. name: "{{ matrix_playbook_internal_matrix_client_api_traefik_entrypoint_name }}"
  290. port: "{{ matrix_playbook_internal_matrix_client_api_traefik_entrypoint_port }}"
  291. host_bind_port: "{{ matrix_playbook_internal_matrix_client_api_traefik_entrypoint_host_bind_port }}"
  292. config: "{{ matrix_playbook_internal_matrix_client_api_traefik_entrypoint_config }}"
  293. # Variables to Control which parts of our roles run.
  294. run_postgres_import: true
  295. run_postgres_upgrade: true
  296. run_postgres_import_sqlite_db: true
  297. run_postgres_vacuum: true
  298. run_synapse_register_user: true
  299. run_synapse_update_user_password: true
  300. run_synapse_import_media_store: true
  301. run_synapse_rust_synapse_compress_state: true
  302. run_dendrite_register_user: true
  303. run_setup: true
  304. run_self_check: true
  305. run_start: true
  306. run_stop: true