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.
 
 

138 wiersze
8.9 KiB

  1. ---
  2. # Project source code URL: https://github.com/krille-chan/fluffychat
  3. matrix_client_fluffychat_enabled: true
  4. matrix_client_fluffychat_container_image_self_build: false
  5. matrix_client_fluffychat_container_image_self_build_repo: "https://github.com/etkecc/fluffychat-web.git"
  6. matrix_client_fluffychat_container_image_self_build_version: "{{ 'main' if matrix_client_fluffychat_version == 'latest' else matrix_client_fluffychat_version }}"
  7. # renovate: datasource=docker depName=ghcr.io/etkecc/fluffychat-web
  8. matrix_client_fluffychat_version: v1.24.0
  9. matrix_client_fluffychat_docker_image: "{{ matrix_client_fluffychat_docker_image_name_prefix }}etkecc/fluffychat-web:{{ matrix_client_fluffychat_version }}"
  10. matrix_client_fluffychat_docker_image_name_prefix: "{{ 'localhost/' if matrix_client_fluffychat_container_image_self_build else 'ghcr.io/' }}"
  11. matrix_client_fluffychat_docker_image_force_pull: "{{ matrix_client_fluffychat_docker_image.endswith(':latest') }}"
  12. matrix_client_fluffychat_data_path: "{{ matrix_base_data_path }}/client-fluffychat"
  13. matrix_client_fluffychat_container_src_files_path: "{{ matrix_client_fluffychat_data_path }}/docker-src"
  14. # The base container network
  15. matrix_client_fluffychat_container_network: ''
  16. # A list of additional container networks that the container would be connected to.
  17. # The role does not create these networks, so make sure they already exist.
  18. # Use this to expose this container to a reverse proxy, which runs in a different container network.
  19. matrix_client_fluffychat_container_additional_networks: []
  20. # Controls whether the matrix-client-fluffychat container exposes its HTTP port (tcp/8080 in the container).
  21. #
  22. # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:8765"), or empty string to not expose.
  23. matrix_client_fluffychat_container_http_host_bind_port: ''
  24. # matrix_client_fluffychat_container_labels_traefik_enabled controls whether labels to assist a Traefik reverse-proxy will be attached to the container.
  25. # See `../templates/labels.j2` for details.
  26. #
  27. # To inject your own other container labels, see `matrix_client_fluffychat_container_labels_additional_labels`.
  28. matrix_client_fluffychat_container_labels_traefik_enabled: true
  29. matrix_client_fluffychat_container_labels_traefik_docker_network: "{{ matrix_client_fluffychat_container_network }}"
  30. matrix_client_fluffychat_container_labels_traefik_hostname: "{{ matrix_client_fluffychat_hostname }}"
  31. # The path prefix must either be `/` or not end with a slash (e.g. `/fluffychat`).
  32. matrix_client_fluffychat_container_labels_traefik_path_prefix: "{{ matrix_client_fluffychat_path_prefix }}"
  33. 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 %}"
  34. matrix_client_fluffychat_container_labels_traefik_priority: 0
  35. matrix_client_fluffychat_container_labels_traefik_entrypoints: web-secure
  36. matrix_client_fluffychat_container_labels_traefik_tls: "{{ matrix_client_fluffychat_container_labels_traefik_entrypoints != 'web' }}"
  37. matrix_client_fluffychat_container_labels_traefik_tls_certResolver: default # noqa var-naming
  38. # Controls which additional headers to attach to all HTTP responses.
  39. # To add your own headers, use `matrix_client_fluffychat_container_labels_traefik_additional_response_headers_custom`
  40. 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) }}"
  41. matrix_client_fluffychat_container_labels_traefik_additional_response_headers_auto: |
  42. {{
  43. {}
  44. | combine ({'X-XSS-Protection': matrix_client_fluffychat_http_header_xss_protection} if matrix_client_fluffychat_http_header_xss_protection else {})
  45. | combine ({'X-Frame-Options': matrix_client_fluffychat_http_header_frame_options} if matrix_client_fluffychat_http_header_frame_options else {})
  46. | combine ({'X-Content-Type-Options': matrix_client_fluffychat_http_header_content_type_options} if matrix_client_fluffychat_http_header_content_type_options else {})
  47. | combine ({'Content-Security-Policy': matrix_client_fluffychat_http_header_content_security_policy} if matrix_client_fluffychat_http_header_content_security_policy else {})
  48. | combine ({'Permission-Policy': matrix_client_fluffychat_http_header_content_permission_policy} if matrix_client_fluffychat_http_header_content_permission_policy else {})
  49. | 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 {})
  50. }}
  51. matrix_client_fluffychat_container_labels_traefik_additional_response_headers_custom: {}
  52. # matrix_client_fluffychat_container_labels_additional_labels contains a multiline string with additional labels to add to the container label file.
  53. # See `../templates/labels.j2` for details.
  54. #
  55. # Example:
  56. # matrix_client_fluffychat_container_labels_additional_labels: |
  57. # my.label=1
  58. # another.label="here"
  59. matrix_client_fluffychat_container_labels_additional_labels: ''
  60. # A list of extra arguments to pass to the container
  61. matrix_client_fluffychat_container_extra_arguments: []
  62. # List of systemd services that matrix-client-fluffychat.service depends on
  63. matrix_client_fluffychat_systemd_required_services_list: "{{ [devture_systemd_docker_base_docker_service_name] if devture_systemd_docker_base_docker_service_name else [] }}"
  64. # Specifies the value of the `X-XSS-Protection` header
  65. # Stops pages from loading when they detect reflected cross-site scripting (XSS) attacks.
  66. #
  67. # Learn more about it is here:
  68. # - https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-XSS-Protection
  69. # - https://portswigger.net/web-security/cross-site-scripting/reflected
  70. matrix_client_fluffychat_http_header_xss_protection: "1; mode=block"
  71. # Specifies the value of the `X-Frame-Options` header which controls whether framing can happen.
  72. # See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Frame-Options
  73. matrix_client_fluffychat_http_header_frame_options: SAMEORIGIN
  74. # Specifies the value of the `X-Content-Type-Options` header.
  75. # See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Content-Type-Options
  76. matrix_client_fluffychat_http_header_content_type_options: nosniff
  77. # Specifies the value of the `Content-Security-Policy` header.
  78. # See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy
  79. matrix_client_fluffychat_http_header_content_security_policy: frame-ancestors 'self'
  80. # Specifies the value of the `Permission-Policy` header.
  81. # See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permission-Policy
  82. matrix_client_fluffychat_http_header_content_permission_policy: "{{ 'interest-cohort=()' if matrix_client_fluffychat_floc_optout_enabled else '' }}"
  83. # Specifies the value of the `Strict-Transport-Security` header.
  84. # See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security
  85. matrix_client_fluffychat_http_header_strict_transport_security: "max-age=31536000; includeSubDomains{{ '; preload' if matrix_client_fluffychat_hsts_preload_enabled else '' }}"
  86. # Controls whether to send a "Permissions-Policy interest-cohort=();" header along with all responses
  87. #
  88. # Learn more about what it is here:
  89. # - https://www.eff.org/deeplinks/2021/03/googles-floc-terrible-idea
  90. # - https://paramdeo.com/blog/opting-your-website-out-of-googles-floc-network
  91. # - https://amifloced.org/
  92. #
  93. # Of course, a better solution is to just stop using browsers (like Chrome), which participate in such tracking practices.
  94. # See: `matrix_client_fluffychat_content_permission_policy`
  95. matrix_client_fluffychat_floc_optout_enabled: true
  96. # Controls if HSTS preloading is enabled
  97. #
  98. # In its strongest and recommended form, the [HSTS policy](https://www.chromium.org/hsts) includes all subdomains, and
  99. # indicates a willingness to be "preloaded" into browsers:
  100. # `Strict-Transport-Security: max-age=31536000; includeSubDomains; preload`
  101. # For more information visit:
  102. # - https://en.wikipedia.org/wiki/HTTP_Strict_Transport_Security
  103. # - https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security
  104. # - https://hstspreload.org/#opt-in
  105. # See: `matrix_client_fluffychat_http_header_strict_transport_security`
  106. matrix_client_fluffychat_hsts_preload_enabled: false
  107. matrix_client_fluffychat_scheme: https
  108. # The hostname at which FluffyChat Web is served.
  109. matrix_client_fluffychat_hostname: "{{ matrix_server_fqn_fluffychat }}"
  110. # The path at which FluffyChat Web is exposed.
  111. # This value must either be `/` or not end with a slash (e.g. `/fluffychat`).
  112. matrix_client_fluffychat_path_prefix: /
  113. # Controls whether the self-check feature should validate SSL certificates.
  114. matrix_client_fluffychat_self_check_validate_certificates: true