Matrix Docker Ansible eploy
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 

130 řádky
8.0 KiB

  1. ---
  2. # A moderation tool for Matrix
  3. # Project source code URL: https://github.com/the-draupnir-project/Draupnir
  4. matrix_bot_draupnir_enabled: true
  5. # renovate: datasource=docker depName=gnuxie/draupnir
  6. matrix_bot_draupnir_version: "v1.87.0"
  7. matrix_bot_draupnir_container_image_self_build: false
  8. matrix_bot_draupnir_container_image_self_build_repo: "https://github.com/the-draupnir-project/Draupnir.git"
  9. matrix_bot_draupnir_docker_image: "{{ matrix_bot_draupnir_docker_image_name_prefix }}gnuxie/draupnir:{{ matrix_bot_draupnir_version }}"
  10. matrix_bot_draupnir_docker_image_name_prefix: "{{ 'localhost/' if matrix_bot_draupnir_container_image_self_build else matrix_container_global_registry_prefix }}"
  11. matrix_bot_draupnir_docker_image_force_pull: "{{ matrix_bot_draupnir_docker_image.endswith(':latest') }}"
  12. matrix_bot_draupnir_base_path: "{{ matrix_base_data_path }}/draupnir"
  13. matrix_bot_draupnir_config_path: "{{ matrix_bot_draupnir_base_path }}/config"
  14. matrix_bot_draupnir_data_path: "{{ matrix_bot_draupnir_base_path }}/data"
  15. matrix_bot_draupnir_docker_src_files_path: "{{ matrix_bot_draupnir_base_path }}/docker-src"
  16. matrix_bot_draupnir_abuse_reporting_enabled: false
  17. matrix_bot_draupnir_web_enabled: "{{ matrix_bot_draupnir_abuse_reporting_enabled }}"
  18. matrix_bot_draupnir_display_reports: "{{ matrix_bot_draupnir_abuse_reporting_enabled }}"
  19. matrix_bot_draupnir_container_network: ""
  20. matrix_bot_draupnir_container_additional_networks: "{{ matrix_bot_draupnir_container_additional_networks_auto + matrix_bot_draupnir_container_additional_networks_custom }}"
  21. matrix_bot_draupnir_container_additional_networks_auto: []
  22. matrix_bot_draupnir_container_additional_networks_custom: []
  23. # Controls whether the matrix-bot-draupnir 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_bot_draupnir_container_http_host_bind_port: ''
  27. # A list of extra arguments to pass to the container
  28. matrix_bot_draupnir_container_extra_arguments: []
  29. # List of systemd services that matrix-bot-draupnir.service depends on
  30. 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 }}"
  31. matrix_bot_draupnir_systemd_required_services_list_default: "{{ [devture_systemd_docker_base_docker_service_name] if devture_systemd_docker_base_docker_service_name else [] }}"
  32. matrix_bot_draupnir_systemd_required_services_list_auto: []
  33. matrix_bot_draupnir_systemd_required_services_list_custom: []
  34. # List of systemd services that matrix-bot-draupnir.service wants
  35. matrix_bot_draupnir_systemd_wanted_services_list: []
  36. # Whether Draupnir should talk to the homeserver through Pantalaimon
  37. # If true, then other variables must be provided including pointing
  38. # `matrix_bot_draupnir_homeserver_url` to the Pantalaimon URL.
  39. matrix_bot_draupnir_pantalaimon_use: false
  40. # The access token for the bot user. Required when NOT using Pantalaimon.
  41. # (Otherwise provide `matrix_bot_draupnir_pantalaimon_username` and `matrix_bot_draupnir_pantalaimon_password` instead.)
  42. matrix_bot_draupnir_access_token: ""
  43. # User name and password for the bot. Required when using Pantalaimon.
  44. # (Otherwise provide `matrix_bot_draupnir_access_token` instead.)
  45. matrix_bot_draupnir_pantalaimon_username: ""
  46. matrix_bot_draupnir_pantalaimon_password: ""
  47. # The room ID where people can use the bot. The bot has no access controls, so
  48. # anyone in this room can use the bot - secure your room!
  49. # This should be a room alias or room ID - not a matrix.to URL.
  50. # Note: Draupnir is fairly verbose - expect a lot of messages from it.
  51. matrix_bot_draupnir_management_room: ""
  52. # Endpoint URL that Draupnir uses to interact with the Matrix homeserver (client-server API).
  53. # Set this to the pantalaimon URL if you're using that.
  54. matrix_bot_draupnir_homeserver_url: ""
  55. # Endpoint URL that Draupnir could use to fetch events related to reports (client-server API and /_synapse/),
  56. # only set this to the public-internet homeserver client API URL, do NOT set this to the pantalaimon URL.
  57. matrix_bot_draupnir_raw_homeserver_url: ""
  58. # Disable Server ACL is used if you want to not give the bot the right to apply Server ACLs in rooms without complaints from the bot.
  59. # This setting is described the following way in the Configuration.
  60. #
  61. # Whether or not Draupnir should apply `m.room.server_acl` events.
  62. # DO NOT change this to `true` unless you are very confident that you know what you are doing.
  63. #
  64. # Please follow the advice of upstream and only change this value if you know what your doing.
  65. # Its Exposed here because its common enough to be valid to expose.
  66. matrix_bot_draupnir_disable_server_acl: "false"
  67. # Default configuration template which covers the generic use case.
  68. # You can customize it by controlling the various variables inside it.
  69. #
  70. # For a more advanced customization, you can extend the default (see `matrix_bot_draupnir_configuration_extension_yaml`)
  71. # or completely replace this variable with your own template.
  72. matrix_bot_draupnir_configuration_yaml: "{{ lookup('template', 'templates/production.yaml.j2') }}"
  73. matrix_bot_draupnir_configuration_extension_yaml: |
  74. # Your custom YAML configuration goes here.
  75. # This configuration extends the default starting configuration (`matrix_bot_draupnir_configuration_yaml`).
  76. #
  77. # You can override individual variables from the default configuration, or introduce new ones.
  78. #
  79. # If you need something more special, you can take full control by
  80. # completely redefining `matrix_bot_draupnir_configuration_yaml`.
  81. 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 {} }}"
  82. # Holds the final configuration (a combination of the default and its extension).
  83. # You most likely don't need to touch this variable. Instead, see `matrix_bot_draupnir_configuration_yaml`.
  84. matrix_bot_draupnir_configuration: "{{ matrix_bot_draupnir_configuration_yaml | from_yaml | combine(matrix_bot_draupnir_configuration_extension, recursive=True) }}"
  85. # Controls whether labels will be added that redirect the /_matrix/client/../rooms/../report paths to Draupnir
  86. # Following these recommendations (https://github.com/element-hq/synapse/blob/master/docs/reverse_proxy.md), by default, we don't.
  87. # Regardless of whether this is enabled, it may or may not take effect due to the value of other variables.
  88. # See `matrix_synapse_container_labels_traefik_enabled` or `matrix_synapse_container_labels_matrix_related_labels_enabled`
  89. matrix_bot_draupnir_container_labels_traefik_enabled: false
  90. matrix_bot_draupnir_container_labels_traefik_docker_network: "{{ matrix_draupnir_bot_container_network }}"
  91. matrix_bot_draupnir_container_labels_traefik_hostname: "{{ matrix_synapse_container_labels_traefik_hostname }}"
  92. matrix_bot_draupnir_container_labels_traefik_path_regexp: "^/_matrix/client/(r0|v3)/rooms/([^/]*)/report/"
  93. matrix_bot_draupnir_container_labels_traefik_rule: "Host(`{{ matrix_bot_draupnir_container_labels_traefik_hostname }}`) && PathRegexp(`{{ matrix_bot_draupnir_container_labels_traefik_path_regexp }}`)"
  94. matrix_bot_draupnir_container_labels_traefik_priority: 0
  95. matrix_bot_draupnir_container_labels_traefik_entrypoints: "{{ matrix_synapse_container_labels_traefik_entrypoints }}"
  96. matrix_bot_draupnir_container_labels_traefik_tls: "{{ matrix_bot_draupnir_container_labels_traefik_entrypoints != 'web' }}"
  97. matrix_bot_draupnir_container_labels_traefik_tls_certResolver: "{{ matrix_synapse_container_labels_traefik_tls_certResolver }}" # noqa var-naming
  98. # matrix_bot_draupnir_container_labels_traefik_labels_additional_labels contains a multiline string with additional labels to add to the container label file.
  99. # See `../templates/labels.j2` for details.
  100. #
  101. # Example:
  102. # matrix_bot_draupnir_container_labels_traefik_labels_additional_labels: |
  103. # my.label=1
  104. # another.label="here"
  105. matrix_bot_draupnir_container_labels_traefik_labels_additional_labels: ''