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.
 
 

165 wiersze
11 KiB

  1. # SPDX-FileCopyrightText: 2025 Nikita Chernyi
  2. # SPDX-FileCopyrightText: 2025 Slavi Pantaleev
  3. #
  4. # SPDX-License-Identifier: AGPL-3.0-or-later
  5. ---
  6. # Project source code URL: https://github.com/krille-chan/fluffychat
  7. matrix_client_fluffychat_enabled: true
  8. matrix_client_fluffychat_container_image_self_build: false
  9. matrix_client_fluffychat_container_image_self_build_repo: "https://github.com/etkecc/fluffychat-web.git"
  10. matrix_client_fluffychat_container_image_self_build_version: "{{ 'main' if matrix_client_fluffychat_version == 'latest' else matrix_client_fluffychat_version }}"
  11. # renovate: datasource=docker depName=ghcr.io/etkecc/fluffychat-web
  12. matrix_client_fluffychat_version: v2.4.1
  13. matrix_client_fluffychat_container_image: "{{ matrix_client_fluffychat_container_image_registry_prefix }}etkecc/fluffychat-web:{{ matrix_client_fluffychat_version }}"
  14. matrix_client_fluffychat_container_image_registry_prefix: "{{ 'localhost/' if matrix_client_fluffychat_container_image_self_build else matrix_client_fluffychat_container_image_registry_prefix_upstream }}"
  15. matrix_client_fluffychat_container_image_registry_prefix_upstream: "{{ matrix_client_fluffychat_container_image_registry_prefix_upstream_default }}"
  16. matrix_client_fluffychat_container_image_registry_prefix_upstream_default: ghcr.io/
  17. matrix_client_fluffychat_container_image_force_pull: "{{ matrix_client_fluffychat_container_image.endswith(':latest') }}"
  18. matrix_client_fluffychat_base_path: "{{ matrix_base_data_path }}/client-fluffychat"
  19. matrix_client_fluffychat_config_path: "{{ matrix_client_fluffychat_base_path }}/config"
  20. matrix_client_fluffychat_container_src_files_path: "{{ matrix_client_fluffychat_base_path }}/docker-src"
  21. # The base container network
  22. matrix_client_fluffychat_container_network: ''
  23. # A list of additional container networks that the container would be connected to.
  24. # The role does not create these networks, so make sure they already exist.
  25. # Use this to expose this container to a reverse proxy, which runs in a different container network.
  26. matrix_client_fluffychat_container_additional_networks: "{{ matrix_client_fluffychat_container_additional_networks_auto + matrix_client_fluffychat_container_additional_networks_custom }}"
  27. matrix_client_fluffychat_container_additional_networks_auto: []
  28. matrix_client_fluffychat_container_additional_networks_custom: []
  29. # Configures the port number used inside the container image.
  30. matrix_client_fluffychat_container_http_port: 8080
  31. # Controls whether the matrix-client-fluffychat container exposes its HTTP port (tcp/8080 in the container).
  32. #
  33. # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:8080"), or empty string to not expose.
  34. #
  35. # Also see: `matrix_client_fluffychat_container_http_port`
  36. matrix_client_fluffychat_container_http_host_bind_port: ''
  37. # matrix_client_fluffychat_container_labels_traefik_enabled controls whether labels to assist a Traefik reverse-proxy will be attached to the container.
  38. # See `../templates/labels.j2` for details.
  39. #
  40. # To inject your own other container labels, see `matrix_client_fluffychat_container_labels_additional_labels`.
  41. matrix_client_fluffychat_container_labels_traefik_enabled: true
  42. matrix_client_fluffychat_container_labels_traefik_docker_network: "{{ matrix_client_fluffychat_container_network }}"
  43. matrix_client_fluffychat_container_labels_traefik_http_service_load_balancer_port: "{{ matrix_client_fluffychat_container_http_port }}"
  44. matrix_client_fluffychat_container_labels_traefik_hostname: "{{ matrix_client_fluffychat_hostname }}"
  45. # The path prefix must either be `/` or not end with a slash (e.g. `/fluffychat`).
  46. matrix_client_fluffychat_container_labels_traefik_path_prefix: "{{ matrix_client_fluffychat_path_prefix }}"
  47. matrix_client_fluffychat_container_labels_traefik_rule: "Host(`{{ matrix_client_fluffychat_container_labels_traefik_hostname }}`){% if matrix_client_fluffychat_container_labels_traefik_path_prefix != '/' %} && PathPrefix(`{{ matrix_client_fluffychat_container_labels_traefik_path_prefix }}`){% endif %}"
  48. matrix_client_fluffychat_container_labels_traefik_priority: 0
  49. matrix_client_fluffychat_container_labels_traefik_entrypoints: web-secure
  50. matrix_client_fluffychat_container_labels_traefik_tls: "{{ matrix_client_fluffychat_container_labels_traefik_entrypoints != 'web' }}"
  51. matrix_client_fluffychat_container_labels_traefik_tls_certResolver: default # noqa var-naming
  52. # Controls which additional headers to attach to all HTTP responses.
  53. # To add your own headers, use `matrix_client_fluffychat_container_labels_traefik_additional_response_headers_custom`
  54. matrix_client_fluffychat_container_labels_traefik_additional_response_headers: "{{ matrix_client_fluffychat_container_labels_traefik_additional_response_headers_auto | combine(matrix_client_fluffychat_container_labels_traefik_additional_response_headers_custom) }}"
  55. matrix_client_fluffychat_container_labels_traefik_additional_response_headers_auto: |
  56. {{
  57. {}
  58. | combine ({'X-XSS-Protection': matrix_client_fluffychat_http_header_xss_protection} if matrix_client_fluffychat_http_header_xss_protection else {})
  59. | combine ({'X-Content-Type-Options': matrix_client_fluffychat_http_header_content_type_options} if matrix_client_fluffychat_http_header_content_type_options else {})
  60. | combine ({'Content-Security-Policy': matrix_client_fluffychat_http_header_content_security_policy} if matrix_client_fluffychat_http_header_content_security_policy else {})
  61. | combine ({'Permission-Policy': matrix_client_fluffychat_http_header_content_permission_policy} if matrix_client_fluffychat_http_header_content_permission_policy else {})
  62. | combine ({'Strict-Transport-Security': matrix_client_fluffychat_http_header_strict_transport_security} if matrix_client_fluffychat_http_header_strict_transport_security and matrix_client_fluffychat_container_labels_traefik_tls else {})
  63. }}
  64. matrix_client_fluffychat_container_labels_traefik_additional_response_headers_custom: {}
  65. # matrix_client_fluffychat_container_labels_additional_labels contains a multiline string with additional labels to add to the container label file.
  66. # See `../templates/labels.j2` for details.
  67. #
  68. # Example:
  69. # matrix_client_fluffychat_container_labels_additional_labels: |
  70. # my.label=1
  71. # another.label="here"
  72. matrix_client_fluffychat_container_labels_additional_labels: ''
  73. # A list of extra arguments to pass to the container
  74. matrix_client_fluffychat_container_extra_arguments: []
  75. # List of systemd services that matrix-client-fluffychat.service depends on
  76. matrix_client_fluffychat_systemd_required_services_list: "{{ matrix_client_fluffychat_systemd_required_services_list_default + matrix_client_fluffychat_systemd_required_services_list_auto + matrix_client_fluffychat_systemd_required_services_list_custom }}"
  77. matrix_client_fluffychat_systemd_required_services_list_default: "{{ [devture_systemd_docker_base_docker_service_name] if devture_systemd_docker_base_docker_service_name else [] }}"
  78. matrix_client_fluffychat_systemd_required_services_list_auto: []
  79. matrix_client_fluffychat_systemd_required_services_list_custom: []
  80. # Specifies the value of the `X-XSS-Protection` header
  81. # Stops pages from loading when they detect reflected cross-site scripting (XSS) attacks.
  82. #
  83. # Learn more about it is here:
  84. # - https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-XSS-Protection
  85. # - https://portswigger.net/web-security/cross-site-scripting/reflected
  86. matrix_client_fluffychat_http_header_xss_protection: "1; mode=block"
  87. # Specifies the value of the `X-Content-Type-Options` header.
  88. # See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Content-Type-Options
  89. matrix_client_fluffychat_http_header_content_type_options: nosniff
  90. # Specifies the value of the `Content-Security-Policy` header.
  91. # See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy
  92. matrix_client_fluffychat_http_header_content_security_policy: frame-ancestors 'self'
  93. # Specifies the value of the `Permission-Policy` header.
  94. # See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permission-Policy
  95. matrix_client_fluffychat_http_header_content_permission_policy: "{{ 'interest-cohort=()' if matrix_client_fluffychat_floc_optout_enabled else '' }}"
  96. # Specifies the value of the `Strict-Transport-Security` header.
  97. # See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security
  98. matrix_client_fluffychat_http_header_strict_transport_security: "max-age=31536000; includeSubDomains{{ '; preload' if matrix_client_fluffychat_hsts_preload_enabled else '' }}"
  99. # Controls whether to send a "Permissions-Policy interest-cohort=();" header along with all responses
  100. #
  101. # Learn more about what it is here:
  102. # - https://www.eff.org/deeplinks/2021/03/googles-floc-terrible-idea
  103. # - https://paramdeo.com/blog/opting-your-website-out-of-googles-floc-network
  104. # - https://amifloced.org/
  105. #
  106. # Of course, a better solution is to just stop using browsers (like Chrome), which participate in such tracking practices.
  107. # See: `matrix_client_fluffychat_content_permission_policy`
  108. matrix_client_fluffychat_floc_optout_enabled: true
  109. # Controls if HSTS preloading is enabled
  110. #
  111. # In its strongest and recommended form, the [HSTS policy](https://www.chromium.org/hsts) includes all subdomains, and
  112. # indicates a willingness to be "preloaded" into browsers:
  113. # `Strict-Transport-Security: max-age=31536000; includeSubDomains; preload`
  114. # For more information visit:
  115. # - https://en.wikipedia.org/wiki/HTTP_Strict_Transport_Security
  116. # - https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security
  117. # - https://hstspreload.org/#opt-in
  118. # See: `matrix_client_fluffychat_http_header_strict_transport_security`
  119. matrix_client_fluffychat_hsts_preload_enabled: false
  120. matrix_client_fluffychat_scheme: https
  121. # The hostname at which FluffyChat Web is served.
  122. matrix_client_fluffychat_hostname: "{{ matrix_server_fqn_fluffychat }}"
  123. # The path at which FluffyChat Web is exposed.
  124. # This value must either be `/` or not end with a slash (e.g. `/fluffychat`).
  125. matrix_client_fluffychat_path_prefix: /
  126. # Controls whether the self-check feature should validate SSL certificates.
  127. matrix_client_fluffychat_self_check_validate_certificates: true
  128. # Controls the default homeserver domain (not URL) used in the FluffyChat Web configuration.
  129. matrix_client_fluffychat_config_defaultHomeserver: ~
  130. # matrix_client_fluffychat_restart_necessary controls whether the service
  131. # will be restarted (when true) or merely started (when false) by the
  132. # systemd service manager role (when conditional restart is enabled).
  133. #
  134. # This value is automatically computed during installation based on whether
  135. # any configuration files, the systemd service file, or the container image changed.
  136. # The default of `false` means "no restart needed" — appropriate when the role's
  137. # installation tasks haven't run (e.g., due to --tags skipping them).
  138. matrix_client_fluffychat_restart_necessary: false