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

255 строки
14 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 - 2025 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. # synapse-admin is a web UI for managing the Synapse Matrix server
  13. # Project source code URL: https://github.com/Awesome-Technologies/synapse-admin
  14. # Fork source code URL: https://github.com/etkecc/synapse-admin
  15. synapse_admin_enabled: true
  16. # A path on host where all related files will be saved
  17. synapse_admin_config_path: "{{ synapse_admin_base_path }}/config"
  18. synapse_admin_docker_src_files_path: "{{ synapse_admin_base_path }}/docker-src"
  19. synapse_admin_container_uid: ''
  20. synapse_admin_container_gid: ''
  21. synapse_admin_container_image_self_build: false
  22. synapse_admin_container_image_self_build_repo: "https://github.com/etkecc/synapse-admin.git"
  23. # renovate: datasource=docker depName=ghcr.io/etkecc/synapse-admin
  24. synapse_admin_version: v0.11.1-etke53
  25. synapse_admin_container_image: "{{ synapse_admin_container_image_registry_prefix }}etkecc/synapse-admin:{{ synapse_admin_version }}"
  26. synapse_admin_container_image_registry_prefix_upstream_default: "ghcr.io/"
  27. synapse_admin_container_image_force_pull: "{{ synapse_admin_container_image.endswith(':latest') }}"
  28. # The base container network
  29. synapse_admin_container_network: synapse-admin
  30. # A list of additional container networks that the container would be connected to.
  31. # The role does not create these networks, so make sure they already exist.
  32. # Use this to expose this container to a reverse proxy, which runs in a different container network.
  33. synapse_admin_container_additional_networks: []
  34. # Controls whether the synapse-admin container exposes its HTTP port (tcp/8080 in the container).
  35. #
  36. # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:8766"), or empty string to not expose.
  37. synapse_admin_container_http_host_bind_port: ''
  38. # A list of extra arguments to pass to the container
  39. synapse_admin_container_extra_arguments: []
  40. # synapse_admin_container_labels_traefik_enabled controls whether labels to assist a Traefik reverse-proxy will be attached to the container.
  41. # See `../templates/labels.j2` for details.
  42. #
  43. # To inject your own other container labels, see `synapse_admin_container_labels_additional_labels`.
  44. synapse_admin_container_labels_traefik_enabled: true
  45. synapse_admin_container_labels_traefik_docker_network: "{{ synapse_admin_container_network }}"
  46. synapse_admin_container_labels_traefik_hostname: "{{ synapse_admin_hostname }}"
  47. # The path prefix must either be `/` or not end with a slash (e.g. `/synapse-admin`).
  48. synapse_admin_container_labels_traefik_path_prefix: "{{ synapse_admin_path_prefix }}"
  49. synapse_admin_container_labels_traefik_rule: "Host(`{{ synapse_admin_container_labels_traefik_hostname }}`){% if synapse_admin_container_labels_traefik_path_prefix != '/' %} && PathPrefix(`{{ synapse_admin_container_labels_traefik_path_prefix }}`){% endif %}"
  50. synapse_admin_container_labels_traefik_priority: 0
  51. synapse_admin_container_labels_traefik_entrypoints: web-secure
  52. synapse_admin_container_labels_traefik_tls: "{{ synapse_admin_container_labels_traefik_entrypoints != 'web' }}"
  53. synapse_admin_container_labels_traefik_tls_certResolver: default # noqa var-naming
  54. # This setting is to define a list ip addresses to allow access to synapse-admin.
  55. # Each IP address should be in CIDR format, e.g. xxx.xxx.xxx.xxx/xx.
  56. # For more information, see: https://doc.traefik.io/traefik/middlewares/http/ipallowlist/
  57. # If the list is empty, all IP addresses are allowed.
  58. synapse_admin_container_labels_traefik_ipallowlist_sourcerange: []
  59. # Controls which additional headers to attach to all HTTP responses.
  60. # To add your own headers, use `synapse_admin_container_labels_traefik_additional_response_headers_custom`
  61. synapse_admin_container_labels_traefik_additional_response_headers: "{{ synapse_admin_container_labels_traefik_additional_response_headers_auto | combine(synapse_admin_container_labels_traefik_additional_response_headers_custom) }}"
  62. synapse_admin_container_labels_traefik_additional_response_headers_auto: |
  63. {{
  64. {}
  65. | combine ({'X-XSS-Protection': synapse_admin_http_header_xss_protection} if synapse_admin_http_header_xss_protection else {})
  66. | combine ({'X-Content-Type-Options': synapse_admin_http_header_content_type_options} if synapse_admin_http_header_content_type_options else {})
  67. | combine ({'Content-Security-Policy': synapse_admin_http_header_content_security_policy} if synapse_admin_http_header_content_security_policy else {})
  68. | combine ({'Permission-Policy': synapse_admin_http_header_content_permission_policy} if synapse_admin_http_header_content_permission_policy else {})
  69. | combine ({'Strict-Transport-Security': synapse_admin_http_header_strict_transport_security} if synapse_admin_http_header_strict_transport_security and synapse_admin_container_labels_traefik_tls else {})
  70. }}
  71. synapse_admin_container_labels_traefik_additional_response_headers_custom: {}
  72. # synapse_admin_container_labels_additional_labels contains a multiline string with additional labels to add to the container label file.
  73. # See `../templates/labels.j2` for details.
  74. #
  75. # Example:
  76. # synapse_admin_container_labels_additional_labels: |
  77. # my.label=1
  78. # another.label="here"
  79. synapse_admin_container_labels_additional_labels: ''
  80. # List of systemd services that synapse-admin.service depends on
  81. synapse_admin_systemd_required_services_list: "{{ [devture_systemd_docker_base_docker_service_name] if devture_systemd_docker_base_docker_service_name else [] }}"
  82. # List of systemd services that synapse-admin.service wants
  83. synapse_admin_systemd_wanted_services_list: []
  84. # Specifies the value of the `X-XSS-Protection` header
  85. # Stops pages from loading when they detect reflected cross-site scripting (XSS) attacks.
  86. #
  87. # Learn more about it is here:
  88. # - https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-XSS-Protection
  89. # - https://portswigger.net/web-security/cross-site-scripting/reflected
  90. synapse_admin_http_header_xss_protection: "1; mode=block"
  91. # Specifies the value of the `X-Content-Type-Options` header.
  92. # See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Content-Type-Options
  93. synapse_admin_http_header_content_type_options: nosniff
  94. # Specifies the value of the `Content-Security-Policy` header.
  95. # See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy
  96. synapse_admin_http_header_content_security_policy: frame-ancestors 'self'
  97. # Specifies the value of the `Permission-Policy` header.
  98. # See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permission-Policy
  99. synapse_admin_http_header_content_permission_policy: "{{ 'interest-cohort=()' if synapse_admin_floc_optout_enabled else '' }}"
  100. # Specifies the value of the `Strict-Transport-Security` header.
  101. # See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security
  102. synapse_admin_http_header_strict_transport_security: "max-age=31536000; includeSubDomains{{ '; preload' if synapse_admin_hsts_preload_enabled else '' }}"
  103. # Controls whether to send a "Permissions-Policy interest-cohort=();" header along with all responses
  104. #
  105. # Learn more about what it is here:
  106. # - https://www.eff.org/deeplinks/2021/03/googles-floc-terrible-idea
  107. # - https://paramdeo.com/blog/opting-your-website-out-of-googles-floc-network
  108. # - https://amifloced.org/
  109. #
  110. # Of course, a better solution is to just stop using browsers (like Chrome), which participate in such tracking practices.
  111. # See: `synapse_admin_content_permission_policy`
  112. synapse_admin_floc_optout_enabled: true
  113. # Controls if HSTS preloading is enabled
  114. #
  115. # In its strongest and recommended form, the [HSTS policy](https://www.chromium.org/hsts) includes all subdomains, and
  116. # indicates a willingness to be "preloaded" into browsers:
  117. # `Strict-Transport-Security: max-age=31536000; includeSubDomains; preload`
  118. # For more information visit:
  119. # - https://en.wikipedia.org/wiki/HTTP_Strict_Transport_Security
  120. # - https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security
  121. # - https://hstspreload.org/#opt-in
  122. # See: `synapse_admin_http_header_strict_transport_security`
  123. synapse_admin_hsts_preload_enabled: false
  124. # The path at which Synapse Admin is exposed.
  125. # This value must either be `/` or not end with a slash (e.g. `/synapse-admin`).
  126. synapse_admin_path_prefix: /synapse-admin
  127. # Default synapse-admin configuration template which covers the generic use case.
  128. # You can customize it by controlling the various variables inside it.
  129. #
  130. # For a more advanced customization, you can extend the default (see `synapse_admin_configuration_extension_json`)
  131. # or completely replace this variable with your own template.
  132. #
  133. # The side-effect of this lookup is that Ansible would even parse the JSON for us, returning a dict.
  134. # This is unlike what it does when looking up YAML template files (no automatic parsing there).
  135. synapse_admin_configuration_default:
  136. restrictBaseUrl: "{{ synapse_admin_config_restrictBaseUrl }}"
  137. externalAuthProvider: "{{ synapse_admin_config_externalAuthProvider }}"
  138. corsCredentials: "{{ synapse_admin_config_corsCredentials }}"
  139. asManagedUsers: "{{ synapse_admin_config_asManagedUsers }}"
  140. menu: "{{ synapse_admin_config_menu }}"
  141. # Your custom JSON configuration for synapse-admin should go to `synapse_admin_configuration_extension_json`.
  142. # This configuration extends the default starting configuration (`synapse_admin_configuration_default`).
  143. #
  144. # You can override individual variables from the default configuration, or introduce new ones.
  145. #
  146. # If you need something more special, you can take full control by
  147. # completely redefining `synapse_admin_configuration_default`.
  148. #
  149. # Example configuration extension follows:
  150. #
  151. # synapse_admin_configuration_extension_json: |
  152. # {
  153. # "some_setting": true,
  154. # "another_setting": false
  155. # }
  156. synapse_admin_configuration_extension_json: '{}'
  157. # This is similar to `synapse_admin_configuration_extension_json`, but intended for use by playbook or group vars
  158. synapse_admin_configuration_extension_json_auto: '{}'
  159. synapse_admin_configuration_extension: "{{ synapse_admin_configuration_extension_json_auto | from_json | combine(synapse_admin_configuration_extension_json | from_json if synapse_admin_configuration_extension_json | from_json is mapping else {}, recursive=True) }}"
  160. # Holds the final synapse-admin configuration (a combination of the default and its extension).
  161. # You most likely don't need to touch this variable. Instead, see `synapse_admin_configuration_default`.
  162. synapse_admin_configuration: "{{ synapse_admin_configuration_default | combine(synapse_admin_configuration_extension, recursive=True) }}"
  163. # Controls the restrictBaseUrl configuration setting, which, if defined,
  164. # restricts the homeserver(s), so that the user can no longer define a homeserver manually during login.
  165. synapse_admin_config_restrictBaseUrl: "{{ matrix_homeserver_url }}" # noqa var-naming
  166. # Controls the externalAuthProvider configuration setting, which, if defined,
  167. # enables a special compatibility mode that works better for external auth providers like LDAP, MAS, etc.
  168. synapse_admin_config_externalAuthProvider: false # noqa var-naming
  169. # Controls the corsCredentials configuration setting, which, if defined,
  170. # allows including credentials (cookies, authorization headers, or TLS client certificates) in requests
  171. # ref: https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch#including_credentials
  172. synapse_admin_config_corsCredentials: "same-origin" # noqa var-naming
  173. # Controls the menu configuration setting, which, if defined, adds new menu items to the Synapse Admin UI.
  174. # The format is a list of objects, where each object has the following keys:
  175. # - `label` (string, required): The label of the menu item.
  176. # - `i18n` (dict, optional): Dictionary of translations for the label. The keys should be BCP 47 language tags (e.g., en, fr, de) supported by Synapse Admin (see src/i18n).
  177. # - `icon` (string, optional): The icon of the menu item, one of the https://github.com/etkecc/synapse-admin/blob/main/src/components/icons.ts
  178. # - `url` (string, required): The URL of the menu item.
  179. # Example:
  180. # [
  181. # {
  182. # "label": "Contact support",
  183. # "i18n": {
  184. # "de": "Support kontaktieren",
  185. # "fr": "Contacter le support",
  186. # "zh": "联系支持"
  187. # },
  188. # "icon": "SupportAgent",
  189. # "url": "https://github.com/etkecc/synapse-admin/issues"
  190. # }
  191. # ]
  192. synapse_admin_config_menu: []
  193. # Controls the asManagedUsers configuration setting (managed by playbook), which, if defined,
  194. # restricts modifications of the specified users (e.g., bridge-managed).
  195. # You should use JS regex syntax to match the user IDs.
  196. # Example for mautrix-telegram: ["^@telegram_[a-zA-Z0-9]+:example\\.com$"]
  197. # WARNING: you want to use synapse_admin_config_asManagedUsers_custom instead of this variable.
  198. synapse_admin_config_asManagedUsers_auto: [] # noqa var-naming
  199. # Controls the asManagedUsers configuration setting (managed per host), which, if defined,
  200. # restricts modifications of the specified users (e.g., bridge-managed).
  201. # You should use JS regex syntax to match the user IDs.
  202. # Example for mautrix-telegram: ["^@telegram_[a-zA-Z0-9]+:example\\.com$"]
  203. synapse_admin_config_asManagedUsers_custom: [] # noqa var-naming
  204. # Controls the asManagedUsers configuration setting, which, if defined,
  205. # restricts modifications of the specified users (e.g., bridge-managed).
  206. # You should use JS regex syntax to match the user IDs.
  207. # Example for mautrix-telegram: ["^@telegram_[a-zA-Z0-9]+:example\\.com$"]
  208. # WARNING: you want to use synapse_admin_config_asManagedUsers_custom instead of this variable.
  209. synapse_admin_config_asManagedUsers: "{{ synapse_admin_config_asManagedUsers_auto + synapse_admin_config_asManagedUsers_custom }}" # noqa var-naming
  210. # synapse_admin_restart_necessary controls whether the service
  211. # will be restarted (when true) or merely started (when false) by the
  212. # systemd service manager role (when conditional restart is enabled).
  213. #
  214. # This value is automatically computed during installation based on whether
  215. # any configuration files, the systemd service file, or the container image changed.
  216. # The default of `false` means "no restart needed" — appropriate when the role's
  217. # installation tasks haven't run (e.g., due to --tags skipping them).
  218. synapse_admin_restart_necessary: false