Matrix Docker Ansible eploy
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

223 wiersze
14 KiB

  1. ---
  2. # matrix-synapse-admin is a web UI for managing the Synapse Matrix server
  3. # Project source code URL: https://github.com/Awesome-Technologies/synapse-admin
  4. # Fork source code URL: https://github.com/etkecc/synapse-admin
  5. matrix_synapse_admin_enabled: true
  6. # A path on host where all related files will be saved
  7. matrix_synapse_admin_base_path: "{{ matrix_base_data_path }}/synapse-admin"
  8. matrix_synapse_admin_config_path: "{{ matrix_synapse_admin_base_path }}/config"
  9. matrix_synapse_admin_docker_src_files_path: "{{ matrix_synapse_admin_base_path }}/docker-src"
  10. matrix_synapse_admin_container_image_self_build: false
  11. matrix_synapse_admin_container_image_self_build_repo: "https://github.com/etkecc/synapse-admin.git"
  12. # renovate: datasource=docker depName=ghcr.io/etkecc/synapse-admin
  13. matrix_synapse_admin_version: v0.10.3-etke37
  14. matrix_synapse_admin_docker_image: "{{ matrix_synapse_admin_docker_image_name_prefix }}etkecc/synapse-admin:{{ matrix_synapse_admin_version }}"
  15. matrix_synapse_admin_docker_image_name_prefix: "{{ 'localhost/' if matrix_synapse_admin_container_image_self_build else 'ghcr.io/' }}"
  16. matrix_synapse_admin_docker_image_force_pull: "{{ matrix_synapse_admin_docker_image.endswith(':latest') }}"
  17. # The base container network
  18. matrix_synapse_admin_container_network: matrix-synapse-admin
  19. # A list of additional container networks that the container would be connected to.
  20. # The role does not create these networks, so make sure they already exist.
  21. # Use this to expose this container to a reverse proxy, which runs in a different container network.
  22. matrix_synapse_admin_container_additional_networks: []
  23. # Controls whether the matrix-synapse-admin container exposes its HTTP port (tcp/80 in the container).
  24. #
  25. # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:8766"), or empty string to not expose.
  26. matrix_synapse_admin_container_http_host_bind_port: ''
  27. # A list of extra arguments to pass to the container
  28. matrix_synapse_admin_container_extra_arguments: []
  29. # matrix_synapse_admin_container_labels_traefik_enabled controls whether labels to assist a Traefik reverse-proxy will be attached to the container.
  30. # See `../templates/labels.j2` for details.
  31. #
  32. # To inject your own other container labels, see `matrix_synapse_admin_container_labels_additional_labels`.
  33. matrix_synapse_admin_container_labels_traefik_enabled: true
  34. matrix_synapse_admin_container_labels_traefik_docker_network: "{{ matrix_synapse_admin_container_network }}"
  35. matrix_synapse_admin_container_labels_traefik_hostname: "{{ matrix_synapse_admin_hostname }}"
  36. # The path prefix must either be `/` or not end with a slash (e.g. `/synapse-admin`).
  37. matrix_synapse_admin_container_labels_traefik_path_prefix: "{{ matrix_synapse_admin_path_prefix }}"
  38. matrix_synapse_admin_container_labels_traefik_rule: "Host(`{{ matrix_synapse_admin_container_labels_traefik_hostname }}`){% if matrix_synapse_admin_container_labels_traefik_path_prefix != '/' %} && PathPrefix(`{{ matrix_synapse_admin_container_labels_traefik_path_prefix }}`){% endif %}"
  39. matrix_synapse_admin_container_labels_traefik_priority: 0
  40. matrix_synapse_admin_container_labels_traefik_entrypoints: web-secure
  41. matrix_synapse_admin_container_labels_traefik_tls: "{{ matrix_synapse_admin_container_labels_traefik_entrypoints != 'web' }}"
  42. matrix_synapse_admin_container_labels_traefik_tls_certResolver: default # noqa var-naming
  43. # This setting is to define a list ip addresses to allow access to synapse-admin.
  44. # Each IP address should be in CIDR format, e.g. xxx.xxx.xxx.xxx/xx.
  45. # For more information, see: https://doc.traefik.io/traefik/middlewares/http/ipallowlist/
  46. # If the list is empty, all IP addresses are allowed.
  47. matrix_synapse_admin_container_labels_traefik_ipallowlist_sourcerange: []
  48. # Controls which additional headers to attach to all HTTP responses.
  49. # To add your own headers, use `matrix_synapse_admin_container_labels_traefik_additional_response_headers_custom`
  50. matrix_synapse_admin_container_labels_traefik_additional_response_headers: "{{ matrix_synapse_admin_container_labels_traefik_additional_response_headers_auto | combine(matrix_synapse_admin_container_labels_traefik_additional_response_headers_custom) }}"
  51. matrix_synapse_admin_container_labels_traefik_additional_response_headers_auto: |
  52. {{
  53. {}
  54. | combine ({'X-XSS-Protection': matrix_synapse_admin_http_header_xss_protection} if matrix_synapse_admin_http_header_xss_protection else {})
  55. | combine ({'X-Frame-Options': matrix_synapse_admin_http_header_frame_options} if matrix_synapse_admin_http_header_frame_options else {})
  56. | combine ({'X-Content-Type-Options': matrix_synapse_admin_http_header_content_type_options} if matrix_synapse_admin_http_header_content_type_options else {})
  57. | combine ({'Content-Security-Policy': matrix_synapse_admin_http_header_content_security_policy} if matrix_synapse_admin_http_header_content_security_policy else {})
  58. | combine ({'Permission-Policy': matrix_synapse_admin_http_header_content_permission_policy} if matrix_synapse_admin_http_header_content_permission_policy else {})
  59. | combine ({'Strict-Transport-Security': matrix_synapse_admin_http_header_strict_transport_security} if matrix_synapse_admin_http_header_strict_transport_security and matrix_synapse_admin_container_labels_traefik_tls else {})
  60. }}
  61. matrix_synapse_admin_container_labels_traefik_additional_response_headers_custom: {}
  62. # matrix_synapse_admin_container_labels_additional_labels contains a multiline string with additional labels to add to the container label file.
  63. # See `../templates/labels.j2` for details.
  64. #
  65. # Example:
  66. # matrix_synapse_admin_container_labels_additional_labels: |
  67. # my.label=1
  68. # another.label="here"
  69. matrix_synapse_admin_container_labels_additional_labels: ''
  70. # List of systemd services that matrix-synapse-admin.service depends on
  71. matrix_synapse_admin_systemd_required_services_list: "{{ [devture_systemd_docker_base_docker_service_name] if devture_systemd_docker_base_docker_service_name else [] }}"
  72. # List of systemd services that matrix-synapse-admin.service wants
  73. matrix_synapse_admin_systemd_wanted_services_list: []
  74. # Specifies the value of the `X-XSS-Protection` header
  75. # Stops pages from loading when they detect reflected cross-site scripting (XSS) attacks.
  76. #
  77. # Learn more about it is here:
  78. # - https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-XSS-Protection
  79. # - https://portswigger.net/web-security/cross-site-scripting/reflected
  80. matrix_synapse_admin_http_header_xss_protection: "1; mode=block"
  81. # Specifies the value of the `X-Frame-Options` header which controls whether framing can happen.
  82. # See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Frame-Options
  83. matrix_synapse_admin_http_header_frame_options: SAMEORIGIN
  84. # Specifies the value of the `X-Content-Type-Options` header.
  85. # See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Content-Type-Options
  86. matrix_synapse_admin_http_header_content_type_options: nosniff
  87. # Specifies the value of the `Content-Security-Policy` header.
  88. # See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy
  89. matrix_synapse_admin_http_header_content_security_policy: frame-ancestors 'self'
  90. # Specifies the value of the `Permission-Policy` header.
  91. # See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permission-Policy
  92. matrix_synapse_admin_http_header_content_permission_policy: "{{ 'interest-cohort=()' if matrix_synapse_admin_floc_optout_enabled else '' }}"
  93. # Specifies the value of the `Strict-Transport-Security` header.
  94. # See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security
  95. matrix_synapse_admin_http_header_strict_transport_security: "max-age=31536000; includeSubDomains{{ '; preload' if matrix_synapse_admin_hsts_preload_enabled else '' }}"
  96. # Controls whether to send a "Permissions-Policy interest-cohort=();" header along with all responses
  97. #
  98. # Learn more about what it is here:
  99. # - https://www.eff.org/deeplinks/2021/03/googles-floc-terrible-idea
  100. # - https://paramdeo.com/blog/opting-your-website-out-of-googles-floc-network
  101. # - https://amifloced.org/
  102. #
  103. # Of course, a better solution is to just stop using browsers (like Chrome), which participate in such tracking practices.
  104. # See: `matrix_synapse_admin_content_permission_policy`
  105. matrix_synapse_admin_floc_optout_enabled: true
  106. # Controls if HSTS preloading is enabled
  107. #
  108. # In its strongest and recommended form, the [HSTS policy](https://www.chromium.org/hsts) includes all subdomains, and
  109. # indicates a willingness to be "preloaded" into browsers:
  110. # `Strict-Transport-Security: max-age=31536000; includeSubDomains; preload`
  111. # For more information visit:
  112. # - https://en.wikipedia.org/wiki/HTTP_Strict_Transport_Security
  113. # - https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security
  114. # - https://hstspreload.org/#opt-in
  115. # See: `matrix_synapse_admin_http_header_strict_transport_security`
  116. matrix_synapse_admin_hsts_preload_enabled: false
  117. # The hostname at which Synapse Admin is served.
  118. matrix_synapse_admin_hostname: "{{ matrix_server_fqn_matrix }}"
  119. # The path at which Synapse Admin is exposed.
  120. # This value must either be `/` or not end with a slash (e.g. `/synapse-admin`).
  121. matrix_synapse_admin_path_prefix: /synapse-admin
  122. # Default synapse-admin configuration template which covers the generic use case.
  123. # You can customize it by controlling the various variables inside it.
  124. #
  125. # For a more advanced customization, you can extend the default (see `matrix_synapse_admin_configuration_extension_json`)
  126. # or completely replace this variable with your own template.
  127. #
  128. # The side-effect of this lookup is that Ansible would even parse the JSON for us, returning a dict.
  129. # This is unlike what it does when looking up YAML template files (no automatic parsing there).
  130. matrix_synapse_admin_configuration_default:
  131. restrictBaseUrl: "{{ matrix_synapse_admin_config_restrictBaseUrl }}"
  132. asManagedUsers: "{{ matrix_synapse_admin_config_asManagedUsers }}"
  133. menu: "{{ matrix_synapse_admin_config_menu }}"
  134. # Your custom JSON configuration for synapse-admin should go to `matrix_synapse_admin_configuration_extension_json`.
  135. # This configuration extends the default starting configuration (`matrix_synapse_admin_configuration_default`).
  136. #
  137. # You can override individual variables from the default configuration, or introduce new ones.
  138. #
  139. # If you need something more special, you can take full control by
  140. # completely redefining `matrix_synapse_admin_configuration_default`.
  141. #
  142. # Example configuration extension follows:
  143. #
  144. # matrix_synapse_admin_configuration_extension_json: |
  145. # {
  146. # "some_setting": true,
  147. # "another_setting": false
  148. # }
  149. matrix_synapse_admin_configuration_extension_json: '{}'
  150. # This is similar to `matrix_synapse_admin_configuration_extension_json`, but intended for use by playbook or group vars
  151. matrix_synapse_admin_configuration_extension_json_auto: {}
  152. matrix_synapse_admin_configuration_extension: "{{ matrix_synapse_admin_configuration_extension_json_auto | combine(matrix_synapse_admin_configuration_extension_json | from_json if matrix_synapse_admin_configuration_extension_json | from_json is mapping else {}, recursive=True) }}"
  153. # Holds the final synapse-admin configuration (a combination of the default and its extension).
  154. # You most likely don't need to touch this variable. Instead, see `matrix_synapse_admin_configuration_default`.
  155. matrix_synapse_admin_configuration: "{{ matrix_synapse_admin_configuration_default | combine(matrix_synapse_admin_configuration_extension, recursive=True) }}"
  156. # Controls the restrictBaseUrl configuration setting, which, if defined,
  157. # restricts the homeserver(s), so that the user can no longer define a homeserver manually during login.
  158. matrix_synapse_admin_config_restrictBaseUrl: "{{ [matrix_homeserver_url] }}" # noqa var-naming
  159. # Controls the menu configuration setting, which, if defined, adds new menu items to the Synapse Admin UI.
  160. # The format is a list of objects, where each object has the following keys:
  161. # - `label` (string): The label of the menu item.
  162. # - `icon` (string): The icon of the menu item, one of the https://github.com/etkecc/synapse-admin/blob/main/src/components/icons.ts
  163. # - `url` (string): The URL of the menu item.
  164. # Example:
  165. # [
  166. # {
  167. # "label": "Contact support",
  168. # "icon": "SupportAgent",
  169. # "url": "https://github.com/spantaleev/matrix-docker-ansible-deploy/issues"
  170. # }
  171. # ]
  172. matrix_synapse_admin_config_menu: []
  173. # Controls the asManagedUsers configuration setting (managed by playbook), which, if defined,
  174. # restricts modifications of the specified users (e.g., bridge-managed).
  175. # You should use JS regex syntax to match the user IDs.
  176. # Example for mautrix-telegram: ["^@telegram_[a-zA-Z0-9]+:example\\.com$"]
  177. # WARNING: you want to use matrix_synapse_admin_config_asManagedUsers_custom instead of this variable.
  178. matrix_synapse_admin_config_asManagedUsers_auto: [] # noqa var-naming
  179. # Controls the asManagedUsers configuration setting (managed per host), which, if defined,
  180. # restricts modifications of the specified users (e.g., bridge-managed).
  181. # You should use JS regex syntax to match the user IDs.
  182. # Example for mautrix-telegram: ["^@telegram_[a-zA-Z0-9]+:example\\.com$"]
  183. matrix_synapse_admin_config_asManagedUsers_custom: [] # noqa var-naming
  184. # Controls the asManagedUsers configuration setting, which, if defined,
  185. # restricts modifications of the specified users (e.g., bridge-managed).
  186. # You should use JS regex syntax to match the user IDs.
  187. # Example for mautrix-telegram: ["^@telegram_[a-zA-Z0-9]+:example\\.com$"]
  188. # WARNING: you want to use matrix_synapse_admin_config_asManagedUsers_custom instead of this variable.
  189. matrix_synapse_admin_config_asManagedUsers: "{{ matrix_synapse_admin_config_asManagedUsers_auto + matrix_synapse_admin_config_asManagedUsers_custom }}" # noqa var-naming