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.
 
 

165 rivejä
10 KiB

  1. # SPDX-FileCopyrightText: 2023 - 2024 MDAD project contributors
  2. # SPDX-FileCopyrightText: 2023 Samuel Meenzen
  3. # SPDX-FileCopyrightText: 2024 - 2025 Slavi Pantaleev
  4. #
  5. # SPDX-License-Identifier: AGPL-3.0-or-later
  6. ---
  7. # A moderation tool for Matrix
  8. # Project source code URL: https://github.com/the-draupnir-project/Draupnir
  9. matrix_bot_draupnir_enabled: true
  10. # renovate: datasource=docker depName=gnuxie/draupnir
  11. matrix_bot_draupnir_version: "v2.2.0"
  12. matrix_bot_draupnir_container_image_self_build: false
  13. matrix_bot_draupnir_container_image_self_build_repo: "https://github.com/the-draupnir-project/Draupnir.git"
  14. matrix_bot_draupnir_docker_image: "{{ matrix_bot_draupnir_docker_image_registry_prefix }}gnuxie/draupnir:{{ matrix_bot_draupnir_version }}"
  15. matrix_bot_draupnir_docker_image_registry_prefix: "{{ 'localhost/' if matrix_bot_draupnir_container_image_self_build else matrix_bot_draupnir_docker_image_registry_prefix_upstream }}"
  16. matrix_bot_draupnir_docker_image_registry_prefix_upstream: "{{ matrix_bot_draupnir_docker_image_registry_prefix_upstream_default }}"
  17. matrix_bot_draupnir_docker_image_registry_prefix_upstream_default: "docker.io/"
  18. matrix_bot_draupnir_docker_image_force_pull: "{{ matrix_bot_draupnir_docker_image.endswith(':latest') }}"
  19. matrix_bot_draupnir_base_path: "{{ matrix_base_data_path }}/draupnir"
  20. matrix_bot_draupnir_config_path: "{{ matrix_bot_draupnir_base_path }}/config"
  21. matrix_bot_draupnir_data_path: "{{ matrix_bot_draupnir_base_path }}/data"
  22. matrix_bot_draupnir_docker_src_files_path: "{{ matrix_bot_draupnir_base_path }}/docker-src"
  23. matrix_bot_draupnir_abuse_reporting_enabled: false
  24. matrix_bot_draupnir_web_enabled: "{{ matrix_bot_draupnir_abuse_reporting_enabled }}"
  25. matrix_bot_draupnir_display_reports: "{{ matrix_bot_draupnir_abuse_reporting_enabled }}"
  26. matrix_bot_draupnir_container_network: ""
  27. matrix_bot_draupnir_container_additional_networks: "{{ matrix_bot_draupnir_container_additional_networks_auto + matrix_bot_draupnir_container_additional_networks_custom }}"
  28. matrix_bot_draupnir_container_additional_networks_auto: []
  29. matrix_bot_draupnir_container_additional_networks_custom: []
  30. # Controls whether the matrix-bot-draupnir container exposes its HTTP port (tcp/80 in the container).
  31. #
  32. # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:8766"), or empty string to not expose.
  33. matrix_bot_draupnir_container_http_host_bind_port: ''
  34. # A list of extra arguments to pass to the container
  35. matrix_bot_draupnir_container_extra_arguments: []
  36. # List of systemd services that matrix-bot-draupnir.service depends on
  37. matrix_bot_draupnir_systemd_required_services_list: "{{ matrix_bot_draupnir_systemd_required_services_list_default + matrix_bot_draupnir_systemd_required_services_list_auto + matrix_bot_draupnir_systemd_required_services_list_custom }}"
  38. matrix_bot_draupnir_systemd_required_services_list_default: "{{ [devture_systemd_docker_base_docker_service_name] if devture_systemd_docker_base_docker_service_name else [] }}"
  39. matrix_bot_draupnir_systemd_required_services_list_auto: []
  40. matrix_bot_draupnir_systemd_required_services_list_custom: []
  41. # List of systemd services that matrix-bot-draupnir.service wants
  42. matrix_bot_draupnir_systemd_wanted_services_list: []
  43. # Whether Draupnir should talk to the homeserver through Pantalaimon
  44. # If true, then other variables must be provided including pointing
  45. # `matrix_bot_draupnir_homeserver_url` to the Pantalaimon URL.
  46. #
  47. # The upstream project discourages enabling this option, because it is
  48. # known that running Draupnir along with Pantalaimon breaks all workflows that involve
  49. # answering prompts with reactions. (Hint: a lot of workflows rely on them.)
  50. matrix_bot_draupnir_pantalaimon_use: false
  51. # If you choose to accept the risks of using Pantalaimon in your installation
  52. # against the upstream advice, you can enable this to disable the warning about using it.
  53. matrix_bot_draupnir_pantalaimon_breakage_ignore: false
  54. # Tells the bot if it should use its native E2EE support in the form of experimental Rust Crypto in the bot SDK.
  55. # This option is mutually exclusive with `matrix_bot_draupnir_pantalaimon_use`.
  56. # Rust Crypto requires a clean access token that has not touched E2EE so curl is recommended as a method to obtain it.
  57. matrix_bot_draupnir_enable_experimental_rust_crypto: false
  58. # The access token for the bot user. Required if Pantalaimon is NOT used.
  59. # (Otherwise provide `matrix_bot_draupnir_pantalaimon_username` and `matrix_bot_draupnir_pantalaimon_password` instead.)
  60. matrix_bot_draupnir_access_token: ""
  61. # Username and password for the bot. Required if Pantalaimon is used.
  62. # (Otherwise provide `matrix_bot_draupnir_access_token` instead.)
  63. matrix_bot_draupnir_pantalaimon_username: ""
  64. matrix_bot_draupnir_pantalaimon_password: ""
  65. # Username and password the bot uses for logging in directly. If Pantalaimon is used,
  66. # these values become the values of `matrix_bot_draupnir_pantalaimon_username` and `matrix_bot_draupnir_pantalaimon_password`
  67. matrix_bot_draupnir_login: "{{ matrix_bot_draupnir_pantalaimon_username if matrix_bot_draupnir_pantalaimon_use == 'true' else 'bot.draupnir' }}"
  68. matrix_bot_draupnir_password: "{{ matrix_bot_draupnir_pantalaimon_password }}"
  69. # Controls if we activate the config block for Pantalaimon for now. Its name will
  70. # probably be changed for our usecase due to Draupnir's push to scrub Pantalaimon from the codebase.
  71. matrix_bot_draupnir_login_native: ""
  72. # The room ID where people can use the bot. The bot has no access controls, so
  73. # anyone in this room can use the bot - secure your room!
  74. # This should be a room alias or room ID - not a matrix.to URL.
  75. # Note: Draupnir is fairly verbose - expect a lot of messages from it.
  76. matrix_bot_draupnir_management_room: ""
  77. # Endpoint URL that Draupnir uses to interact with the Matrix homeserver (client-server API).
  78. # Set this to the Pantalaimon URL if you're using that.
  79. matrix_bot_draupnir_homeserver_url: ""
  80. # Endpoint URL that Draupnir could use to fetch events related to reports (client-server API and /_synapse/).
  81. # Only set this to the public-internet homeserver client API URL. Do NOT set this to the Pantalaimon URL.
  82. matrix_bot_draupnir_raw_homeserver_url: ""
  83. # Disable Server ACL is used if you do not want to give the bot the right to apply Server ACLs in rooms without complaints from the bot.
  84. # This setting is described the following way in the configuration.
  85. #
  86. # Whether or not Draupnir should apply `m.room.server_acl` events.
  87. # DO NOT change this to `true` unless you are very confident that you know what you are doing.
  88. # It is recommended to consult with people from the upstream project beforehand.
  89. #
  90. # It is exposed here because it is common enough to be valid to expose.
  91. matrix_bot_draupnir_disable_server_acl: "false"
  92. # Controls if the room state backing store is activated.
  93. # Room state backing store makes restarts of the bot lightning fast as the bot does not suffer from amnesia.
  94. # This config option has diminished improvements for bots on extremely fast homeservers or very very small bots on fast homeservers.
  95. matrix_bot_draupnir_enable_room_state_backing_store: "true"
  96. # Default configuration template which covers the generic use case.
  97. # You can customize it by controlling the various variables inside it.
  98. #
  99. # For a more advanced customization, you can extend the default (see `matrix_bot_draupnir_configuration_extension_yaml`)
  100. # or completely replace this variable with your own template.
  101. matrix_bot_draupnir_configuration_yaml: "{{ lookup('template', 'templates/production.yaml.j2') }}"
  102. matrix_bot_draupnir_configuration_extension_yaml: |
  103. # Your custom YAML configuration goes here.
  104. # This configuration extends the default starting configuration (`matrix_bot_draupnir_configuration_yaml`).
  105. #
  106. # You can override individual variables from the default configuration, or introduce new ones.
  107. #
  108. # If you need something more special, you can take full control by
  109. # completely redefining `matrix_bot_draupnir_configuration_yaml`.
  110. matrix_bot_draupnir_configuration_extension: "{{ matrix_bot_draupnir_configuration_extension_yaml | from_yaml if matrix_bot_draupnir_configuration_extension_yaml | from_yaml is mapping else {} }}"
  111. # Holds the final configuration (a combination of the default and its extension).
  112. # You most likely don't need to touch this variable. Instead, see `matrix_bot_draupnir_configuration_yaml`.
  113. matrix_bot_draupnir_configuration: "{{ matrix_bot_draupnir_configuration_yaml | from_yaml | combine(matrix_bot_draupnir_configuration_extension, recursive=True) }}"
  114. # Controls whether labels will be added that redirect the /_matrix/client/../rooms/../report paths to Draupnir
  115. # Following these recommendations (https://github.com/element-hq/synapse/blob/master/docs/reverse_proxy.md), by default, we don't.
  116. # Regardless of whether this is enabled, it may or may not take effect due to the value of other variables.
  117. # See `matrix_synapse_container_labels_traefik_enabled` or `matrix_synapse_container_labels_matrix_related_labels_enabled`
  118. matrix_bot_draupnir_container_labels_traefik_enabled: false
  119. matrix_bot_draupnir_container_labels_traefik_docker_network: "{{ matrix_draupnir_bot_container_network }}"
  120. matrix_bot_draupnir_container_labels_traefik_hostname: "{{ matrix_synapse_container_labels_traefik_hostname }}"
  121. matrix_bot_draupnir_container_labels_traefik_path_regexp: "^/_matrix/client/(r0|v3)/rooms/([^/]*)/report/"
  122. matrix_bot_draupnir_container_labels_traefik_rule: "Host(`{{ matrix_bot_draupnir_container_labels_traefik_hostname }}`) && PathRegexp(`{{ matrix_bot_draupnir_container_labels_traefik_path_regexp }}`)"
  123. matrix_bot_draupnir_container_labels_traefik_priority: 0
  124. matrix_bot_draupnir_container_labels_traefik_entrypoints: "{{ matrix_synapse_container_labels_traefik_entrypoints }}"
  125. matrix_bot_draupnir_container_labels_traefik_tls: "{{ matrix_bot_draupnir_container_labels_traefik_entrypoints != 'web' }}"
  126. matrix_bot_draupnir_container_labels_traefik_tls_certResolver: "{{ matrix_synapse_container_labels_traefik_tls_certResolver }}" # noqa var-naming
  127. # matrix_bot_draupnir_container_labels_traefik_labels_additional_labels contains a multiline string with additional labels to add to the container label file.
  128. # See `../templates/labels.j2` for details.
  129. #
  130. # Example:
  131. # matrix_bot_draupnir_container_labels_traefik_labels_additional_labels: |
  132. # my.label=1
  133. # another.label="here"
  134. matrix_bot_draupnir_container_labels_traefik_labels_additional_labels: ''