Matrix Docker Ansible eploy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

260 lines
15 KiB

  1. # SPDX-FileCopyrightText: 2020 - 2021 Aaron Raimist
  2. # SPDX-FileCopyrightText: 2020 - 2025 Slavi Pantaleev
  3. # SPDX-FileCopyrightText: 2020 Dennis Ciba
  4. # SPDX-FileCopyrightText: 2021 - 2025 MDAD project contributors
  5. # SPDX-FileCopyrightText: 2021 Ahmad Haghighi
  6. # SPDX-FileCopyrightText: 2022 - 2026 Nikita Chernyi
  7. # SPDX-FileCopyrightText: 2022 Marko Weltzer
  8. # SPDX-FileCopyrightText: 2023 Samuel Meenzen
  9. #
  10. # SPDX-License-Identifier: AGPL-3.0-or-later
  11. ---
  12. # matrix-ketesa is Ketesa — a fully-featured, mobile-friendly admin interface for Matrix homeservers powered by Synapse.
  13. # Project source code URL: https://github.com/etkecc/ketesa
  14. matrix_ketesa_enabled: true
  15. # A path on host where all related files will be saved
  16. matrix_ketesa_base_path: "{{ matrix_base_data_path }}/ketesa"
  17. matrix_ketesa_config_path: "{{ matrix_ketesa_base_path }}/config"
  18. matrix_ketesa_container_src_files_path: "{{ matrix_ketesa_base_path }}/docker-src"
  19. matrix_ketesa_container_uid: ''
  20. matrix_ketesa_container_gid: ''
  21. matrix_ketesa_container_image_self_build: false
  22. matrix_ketesa_container_image_self_build_repo: "https://github.com/etkecc/ketesa.git"
  23. # renovate: datasource=docker depName=ghcr.io/etkecc/ketesa
  24. matrix_ketesa_version: v1.0.0
  25. matrix_ketesa_container_image: "{{ matrix_ketesa_container_image_registry_prefix }}etkecc/ketesa:{{ matrix_ketesa_version }}"
  26. matrix_ketesa_container_image_registry_prefix: "{{ 'localhost/' if matrix_ketesa_container_image_self_build else matrix_ketesa_container_image_registry_prefix_upstream }}"
  27. matrix_ketesa_container_image_registry_prefix_upstream: "{{ matrix_ketesa_container_image_registry_prefix_upstream_default }}"
  28. matrix_ketesa_container_image_registry_prefix_upstream_default: "ghcr.io/"
  29. matrix_ketesa_container_image_force_pull: "{{ matrix_ketesa_container_image.endswith(':latest') }}"
  30. # The base container network
  31. matrix_ketesa_container_network: matrix-ketesa
  32. # A list of additional container networks that the container would be connected to.
  33. # The role does not create these networks, so make sure they already exist.
  34. # Use this to expose this container to a reverse proxy, which runs in a different container network.
  35. matrix_ketesa_container_additional_networks: []
  36. # Controls whether the matrix-ketesa container exposes its HTTP port (tcp/8080 in the container).
  37. #
  38. # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:8766"), or empty string to not expose.
  39. matrix_ketesa_container_http_host_bind_port: ''
  40. # A list of extra arguments to pass to the container
  41. matrix_ketesa_container_extra_arguments: []
  42. # matrix_ketesa_container_labels_traefik_enabled controls whether labels to assist a Traefik reverse-proxy will be attached to the container.
  43. # See `../templates/labels.j2` for details.
  44. #
  45. # To inject your own other container labels, see `matrix_ketesa_container_labels_additional_labels`.
  46. matrix_ketesa_container_labels_traefik_enabled: true
  47. matrix_ketesa_container_labels_traefik_docker_network: "{{ matrix_ketesa_container_network }}"
  48. matrix_ketesa_container_labels_traefik_hostname: "{{ matrix_ketesa_hostname }}"
  49. # The path prefix must either be `/` or not end with a slash (e.g. `/ketesa`).
  50. matrix_ketesa_container_labels_traefik_path_prefix: "{{ matrix_ketesa_path_prefix }}"
  51. matrix_ketesa_container_labels_traefik_rule: "Host(`{{ matrix_ketesa_container_labels_traefik_hostname }}`){% if matrix_ketesa_container_labels_traefik_path_prefix != '/' %} && PathPrefix(`{{ matrix_ketesa_container_labels_traefik_path_prefix }}`){% endif %}"
  52. matrix_ketesa_container_labels_traefik_priority: 0
  53. matrix_ketesa_container_labels_traefik_entrypoints: web-secure
  54. matrix_ketesa_container_labels_traefik_tls: "{{ matrix_ketesa_container_labels_traefik_entrypoints != 'web' }}"
  55. matrix_ketesa_container_labels_traefik_tls_certResolver: default # noqa var-naming
  56. # This setting is to define a list of IP addresses to allow access to Ketesa.
  57. # Each IP address should be in CIDR format, e.g. xxx.xxx.xxx.xxx/xx.
  58. # For more information, see: https://doc.traefik.io/traefik/middlewares/http/ipallowlist/
  59. # If the list is empty, all IP addresses are allowed.
  60. matrix_ketesa_container_labels_traefik_ipallowlist_sourcerange: []
  61. # Controls which additional headers to attach to all HTTP responses.
  62. # To add your own headers, use `matrix_ketesa_container_labels_traefik_additional_response_headers_custom`
  63. matrix_ketesa_container_labels_traefik_additional_response_headers: "{{ matrix_ketesa_container_labels_traefik_additional_response_headers_auto | combine(matrix_ketesa_container_labels_traefik_additional_response_headers_custom) }}"
  64. matrix_ketesa_container_labels_traefik_additional_response_headers_auto: |
  65. {{
  66. {}
  67. | combine ({'X-XSS-Protection': matrix_ketesa_http_header_xss_protection} if matrix_ketesa_http_header_xss_protection else {})
  68. | combine ({'X-Content-Type-Options': matrix_ketesa_http_header_content_type_options} if matrix_ketesa_http_header_content_type_options else {})
  69. | combine ({'Content-Security-Policy': matrix_ketesa_http_header_content_security_policy} if matrix_ketesa_http_header_content_security_policy else {})
  70. | combine ({'Permission-Policy': matrix_ketesa_http_header_content_permission_policy} if matrix_ketesa_http_header_content_permission_policy else {})
  71. | combine ({'Strict-Transport-Security': matrix_ketesa_http_header_strict_transport_security} if matrix_ketesa_http_header_strict_transport_security and matrix_ketesa_container_labels_traefik_tls else {})
  72. }}
  73. matrix_ketesa_container_labels_traefik_additional_response_headers_custom: {}
  74. # matrix_ketesa_container_labels_additional_labels contains a multiline string with additional labels to add to the container label file.
  75. # See `../templates/labels.j2` for details.
  76. #
  77. # Example:
  78. # matrix_ketesa_container_labels_additional_labels: |
  79. # my.label=1
  80. # another.label="here"
  81. matrix_ketesa_container_labels_additional_labels: ''
  82. # List of systemd services that matrix-ketesa.service depends on
  83. matrix_ketesa_systemd_required_services_list: "{{ [devture_systemd_docker_base_docker_service_name] if devture_systemd_docker_base_docker_service_name else [] }}"
  84. # List of systemd services that matrix-ketesa.service wants
  85. matrix_ketesa_systemd_wanted_services_list: []
  86. # Specifies the value of the `X-XSS-Protection` header
  87. # Stops pages from loading when they detect reflected cross-site scripting (XSS) attacks.
  88. #
  89. # Learn more about it is here:
  90. # - https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-XSS-Protection
  91. # - https://portswigger.net/web-security/cross-site-scripting/reflected
  92. matrix_ketesa_http_header_xss_protection: "1; mode=block"
  93. # Specifies the value of the `X-Content-Type-Options` header.
  94. # See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Content-Type-Options
  95. matrix_ketesa_http_header_content_type_options: nosniff
  96. # Specifies the value of the `Content-Security-Policy` header.
  97. # See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy
  98. matrix_ketesa_http_header_content_security_policy: frame-ancestors 'self'
  99. # Specifies the value of the `Permission-Policy` header.
  100. # See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permission-Policy
  101. matrix_ketesa_http_header_content_permission_policy: "{{ 'interest-cohort=()' if matrix_ketesa_floc_optout_enabled else '' }}"
  102. # Specifies the value of the `Strict-Transport-Security` header.
  103. # See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security
  104. matrix_ketesa_http_header_strict_transport_security: "max-age=31536000; includeSubDomains{{ '; preload' if matrix_ketesa_hsts_preload_enabled else '' }}"
  105. # Controls whether to send a "Permissions-Policy interest-cohort=();" header along with all responses
  106. #
  107. # Learn more about what it is here:
  108. # - https://www.eff.org/deeplinks/2021/03/googles-floc-terrible-idea
  109. # - https://paramdeo.com/blog/opting-your-website-out-of-googles-floc-network
  110. # - https://amifloced.org/
  111. #
  112. # Of course, a better solution is to just stop using browsers (like Chrome), which participate in such tracking practices.
  113. # See: `matrix_ketesa_content_permission_policy`
  114. matrix_ketesa_floc_optout_enabled: true
  115. # Controls if HSTS preloading is enabled
  116. #
  117. # In its strongest and recommended form, the [HSTS policy](https://www.chromium.org/hsts) includes all subdomains, and
  118. # indicates a willingness to be "preloaded" into browsers:
  119. # `Strict-Transport-Security: max-age=31536000; includeSubDomains; preload`
  120. # For more information visit:
  121. # - https://en.wikipedia.org/wiki/HTTP_Strict_Transport_Security
  122. # - https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security
  123. # - https://hstspreload.org/#opt-in
  124. # See: `matrix_ketesa_http_header_strict_transport_security`
  125. matrix_ketesa_hsts_preload_enabled: false
  126. # The hostname at which Ketesa is served.
  127. matrix_ketesa_hostname: "{{ matrix_server_fqn_matrix }}"
  128. # The path at which Ketesa is exposed.
  129. # This value must either be `/` or not end with a slash (e.g. `/ketesa`).
  130. matrix_ketesa_path_prefix: /synapse-admin
  131. # Default Ketesa configuration template which covers the generic use case.
  132. # You can customize it by controlling the various variables inside it.
  133. #
  134. # For a more advanced customization, you can extend the default (see `matrix_ketesa_configuration_extension_json`)
  135. # or completely replace this variable with your own template.
  136. #
  137. # The side-effect of this lookup is that Ansible would even parse the JSON for us, returning a dict.
  138. # This is unlike what it does when looking up YAML template files (no automatic parsing there).
  139. matrix_ketesa_configuration_default:
  140. restrictBaseUrl: "{{ matrix_ketesa_config_restrictBaseUrl }}"
  141. externalAuthProvider: "{{ matrix_ketesa_config_externalAuthProvider }}"
  142. corsCredentials: "{{ matrix_ketesa_config_corsCredentials }}"
  143. asManagedUsers: "{{ matrix_ketesa_config_asManagedUsers }}"
  144. menu: "{{ matrix_ketesa_config_menu }}"
  145. # Your custom JSON configuration for Ketesa should go to `matrix_ketesa_configuration_extension_json`.
  146. # This configuration extends the default starting configuration (`matrix_ketesa_configuration_default`).
  147. #
  148. # You can override individual variables from the default configuration, or introduce new ones.
  149. #
  150. # If you need something more special, you can take full control by
  151. # completely redefining `matrix_ketesa_configuration_default`.
  152. #
  153. # Example configuration extension follows:
  154. #
  155. # matrix_ketesa_configuration_extension_json: |
  156. # {
  157. # "some_setting": true,
  158. # "another_setting": false
  159. # }
  160. matrix_ketesa_configuration_extension_json: '{}'
  161. # This is similar to `matrix_ketesa_configuration_extension_json`, but intended for use by playbook or group vars
  162. matrix_ketesa_configuration_extension_json_auto: '{}'
  163. matrix_ketesa_configuration_extension: "{{ matrix_ketesa_configuration_extension_json_auto | from_json | combine(matrix_ketesa_configuration_extension_json | from_json if matrix_ketesa_configuration_extension_json | from_json is mapping else {}, recursive=True) }}"
  164. # Holds the final Ketesa configuration (a combination of the default and its extension).
  165. # You most likely don't need to touch this variable. Instead, see `matrix_ketesa_configuration_default`.
  166. matrix_ketesa_configuration: "{{ matrix_ketesa_configuration_default | combine(matrix_ketesa_configuration_extension, recursive=True) }}"
  167. # Controls the restrictBaseUrl configuration setting, which, if defined,
  168. # restricts the homeserver(s), so that the user can no longer define a homeserver manually during login.
  169. matrix_ketesa_config_restrictBaseUrl: "{{ matrix_homeserver_url }}" # noqa var-naming
  170. # Controls the externalAuthProvider configuration setting, which, if defined,
  171. # enables a special compatibility mode that works better for external auth providers like LDAP, MAS, etc.
  172. matrix_ketesa_config_externalAuthProvider: false # noqa var-naming
  173. # Controls the corsCredentials configuration setting, which, if defined,
  174. # allows including credentials (cookies, authorization headers, or TLS client certificates) in requests
  175. # ref: https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch#including_credentials
  176. matrix_ketesa_config_corsCredentials: "same-origin" # noqa var-naming
  177. # Controls the menu configuration setting, which, if defined, adds new menu items to the Ketesa UI.
  178. # The format is a list of objects, where each object has the following keys:
  179. # - `label` (string, required): The label of the menu item.
  180. # - `i18n` (dict, optional): Dictionary of translations for the label. The keys should be BCP 47 language tags (e.g., en, fr, de) supported by Ketesa (see src/i18n).
  181. # - `icon` (string, optional): The icon of the menu item, one of the https://github.com/etkecc/ketesa/blob/main/src/components/icons.ts
  182. # - `url` (string, required): The URL of the menu item.
  183. # Example:
  184. # [
  185. # {
  186. # "label": "Contact support",
  187. # "i18n": {
  188. # "de": "Support kontaktieren",
  189. # "fr": "Contacter le support",
  190. # "zh": "联系支持"
  191. # },
  192. # "icon": "SupportAgent",
  193. # "url": "https://github.com/etkecc/ketesa/issues"
  194. # }
  195. # ]
  196. matrix_ketesa_config_menu: []
  197. # Controls the asManagedUsers configuration setting (managed by playbook), which, if defined,
  198. # restricts modifications of the specified users (e.g., bridge-managed).
  199. # You should use JS regex syntax to match the user IDs.
  200. # Example for mautrix-telegram: ["^@telegram_[a-zA-Z0-9]+:example\\.com$"]
  201. # WARNING: you want to use matrix_ketesa_config_asManagedUsers_custom instead of this variable.
  202. matrix_ketesa_config_asManagedUsers_auto: [] # noqa var-naming
  203. # Controls the asManagedUsers configuration setting (managed per host), which, if defined,
  204. # restricts modifications of the specified users (e.g., bridge-managed).
  205. # You should use JS regex syntax to match the user IDs.
  206. # Example for mautrix-telegram: ["^@telegram_[a-zA-Z0-9]+:example\\.com$"]
  207. matrix_ketesa_config_asManagedUsers_custom: [] # noqa var-naming
  208. # Controls the asManagedUsers configuration setting, which, if defined,
  209. # restricts modifications of the specified users (e.g., bridge-managed).
  210. # You should use JS regex syntax to match the user IDs.
  211. # Example for mautrix-telegram: ["^@telegram_[a-zA-Z0-9]+:example\\.com$"]
  212. # WARNING: you want to use matrix_ketesa_config_asManagedUsers_custom instead of this variable.
  213. matrix_ketesa_config_asManagedUsers: "{{ matrix_ketesa_config_asManagedUsers_auto + matrix_ketesa_config_asManagedUsers_custom }}" # noqa var-naming
  214. # matrix_ketesa_restart_necessary controls whether the service
  215. # will be restarted (when true) or merely started (when false) by the
  216. # systemd service manager role (when conditional restart is enabled).
  217. #
  218. # This value is automatically computed during installation based on whether
  219. # any configuration files, the systemd service file, or the container image changed.
  220. # The default of `false` means "no restart needed" — appropriate when the role's
  221. # installation tasks haven't run (e.g., due to --tags skipping them).
  222. matrix_ketesa_restart_necessary: false