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.
 
 

151 lines
7.6 KiB

  1. ---
  2. # mautrix-discord is a Matrix <-> Discord bridge
  3. # Project source code URL: https://github.com/mautrix/discord
  4. matrix_mautrix_discord_enabled: true
  5. matrix_mautrix_discord_container_image_self_build: false
  6. matrix_mautrix_discord_container_image_self_build_repo: "https://mau.dev/mautrix/discord.git"
  7. matrix_mautrix_discord_container_image_self_build_branch: "{{ 'main' if matrix_mautrix_discord_version == 'latest' else matrix_mautrix_discord_version }}"
  8. # renovate: datasource=docker depName=dock.mau.dev/mautrix/discord
  9. matrix_mautrix_discord_version: v0.6.4
  10. # See: https://mau.dev/mautrix/discord/container_registry
  11. matrix_mautrix_discord_docker_image: "{{ matrix_mautrix_discord_docker_image_name_prefix }}mautrix/discord:{{ matrix_mautrix_discord_version }}"
  12. matrix_mautrix_discord_docker_image_name_prefix: "{{ 'localhost/' if matrix_mautrix_discord_container_image_self_build else 'dock.mau.dev/' }}"
  13. matrix_mautrix_discord_docker_image_force_pull: "{{ matrix_mautrix_discord_docker_image.endswith(':latest') }}"
  14. matrix_mautrix_discord_base_path: "{{ matrix_base_data_path }}/mautrix-discord"
  15. matrix_mautrix_discord_config_path: "{{ matrix_mautrix_discord_base_path }}/config"
  16. matrix_mautrix_discord_data_path: "{{ matrix_mautrix_discord_base_path }}/data"
  17. matrix_mautrix_discord_docker_src_files_path: "{{ matrix_mautrix_discord_base_path }}/docker-src"
  18. matrix_mautrix_discord_homeserver_address: "{{ matrix_homeserver_container_url }}"
  19. matrix_mautrix_discord_homeserver_public_address: ''
  20. matrix_mautrix_discord_homeserver_domain: "{{ matrix_domain }}"
  21. matrix_mautrix_discord_appservice_address: "http://matrix-mautrix-discord:8080"
  22. matrix_mautrix_discord_command_prefix: "!discord"
  23. matrix_mautrix_discord_bridge_permissions: |
  24. {{
  25. {'*': 'relay', matrix_mautrix_discord_homeserver_domain: 'user'}
  26. | combine({matrix_admin: 'admin'} if matrix_admin else {})
  27. }}
  28. # A list of extra arguments to pass to the container
  29. matrix_mautrix_discord_container_extra_arguments: []
  30. # List of systemd services that matrix-mautrix-discord.service depends on.
  31. matrix_mautrix_discord_systemd_required_services_list: ['docker.service']
  32. # List of systemd services that matrix-mautrix-discord.service wants
  33. matrix_mautrix_discord_systemd_wanted_services_list: []
  34. matrix_mautrix_discord_appservice_token: ''
  35. matrix_mautrix_discord_homeserver_token: ''
  36. matrix_mautrix_discord_appservice_bot_username: discordbot
  37. # Minimum severity of journal log messages.
  38. # Options: debug, info, warn, error, fatal
  39. matrix_mautrix_discord_logging_level: 'warn'
  40. # Whether or not created rooms should have federation enabled.
  41. # If false, created portal rooms will never be federated.
  42. matrix_mautrix_discord_federate_rooms: true
  43. # Database-related configuration fields.
  44. #
  45. # To use SQLite, stick to these defaults.
  46. #
  47. # To use Postgres:
  48. # - change the engine (`matrix_mautrix_discord_database_engine: 'postgres'`)
  49. # - adjust your database credentials via the `matrix_mautrix_discord_database_*` variables
  50. matrix_mautrix_discord_database_engine: 'sqlite'
  51. matrix_mautrix_discord_sqlite_database_path_local: "{{ matrix_mautrix_discord_data_path }}/mautrix-discord.db"
  52. matrix_mautrix_discord_sqlite_database_path_in_container: "/data/mautrix-discord.db"
  53. matrix_mautrix_discord_database_username: 'matrix_mautrix_discord'
  54. matrix_mautrix_discord_database_password: 'some-password'
  55. matrix_mautrix_discord_database_hostname: ''
  56. matrix_mautrix_discord_database_port: 5432
  57. matrix_mautrix_discord_database_name: 'matrix_mautrix_discord'
  58. matrix_mautrix_discord_database_sslmode: disable
  59. matrix_mautrix_discord_database_connection_string: 'postgresql://{{ matrix_mautrix_discord_database_username }}:{{ matrix_mautrix_discord_database_password }}@{{ matrix_mautrix_discord_database_hostname }}:{{ matrix_mautrix_discord_database_port }}/{{ matrix_mautrix_discord_database_name }}?sslmode={{ matrix_mautrix_discord_database_sslmode }}'
  60. matrix_mautrix_discord_appservice_database_type: "{{
  61. {
  62. 'sqlite': 'sqlite3',
  63. 'postgres':'postgres',
  64. }[matrix_mautrix_discord_database_engine]
  65. }}"
  66. matrix_mautrix_discord_appservice_database_uri: "{{
  67. {
  68. 'sqlite': matrix_mautrix_discord_sqlite_database_path_in_container,
  69. 'postgres': matrix_mautrix_discord_database_connection_string,
  70. }[matrix_mautrix_discord_database_engine]
  71. }}"
  72. # Can be set to enable automatic double-puppeting via Shared Secret Auth (https://github.com/devture/matrix-synapse-shared-secret-auth).
  73. matrix_mautrix_discord_login_shared_secret: ''
  74. matrix_mautrix_discord_bridge_login_shared_secret_map:
  75. "{{ {matrix_mautrix_discord_homeserver_domain: matrix_mautrix_discord_login_shared_secret} if matrix_mautrix_discord_login_shared_secret else {} }}"
  76. # Servers to always allow double puppeting from
  77. matrix_mautrix_discord_bridge_double_puppet_server_map:
  78. "{{ matrix_mautrix_discord_homeserver_domain : matrix_mautrix_discord_homeserver_address }}"
  79. # Default mautrix-discord configuration template which covers the generic use case.
  80. # You can customize it by controlling the various variables inside it.
  81. #
  82. # For a more advanced customization, you can extend the default (see `matrix_mautrix_discord_configuration_extension_yaml`)
  83. # or completely replace this variable with your own template.
  84. matrix_mautrix_discord_configuration_yaml: "{{ lookup('template', 'templates/config.yaml.j2') }}"
  85. matrix_mautrix_discord_configuration_extension_yaml: |
  86. # Your custom YAML configuration goes here.
  87. # This configuration extends the default starting configuration (`matrix_mautrix_discord_configuration_yaml`).
  88. #
  89. # You can override individual variables from the default configuration, or introduce new ones.
  90. #
  91. # If you need something more special, you can take full control by
  92. # completely redefining `matrix_mautrix_discord_configuration_yaml`.
  93. matrix_mautrix_discord_configuration_extension: "{{ matrix_mautrix_discord_configuration_extension_yaml | from_yaml if matrix_mautrix_discord_configuration_extension_yaml | from_yaml is mapping else {} }}"
  94. # Holds the final configuration (a combination of the default and its extension).
  95. # You most likely don't need to touch this variable. Instead, see `matrix_mautrix_discord_configuration_yaml`.
  96. matrix_mautrix_discord_configuration: "{{ matrix_mautrix_discord_configuration_yaml | from_yaml | combine(matrix_mautrix_discord_configuration_extension, recursive=True) }}"
  97. matrix_mautrix_discord_registration_yaml: |
  98. id: discord
  99. url: {{ matrix_mautrix_discord_appservice_address }}
  100. as_token: "{{ matrix_mautrix_discord_appservice_token }}"
  101. hs_token: "{{ matrix_mautrix_discord_homeserver_token }}"
  102. # See https://github.com/mautrix/signal/issues/43
  103. sender_localpart: _bot_{{ matrix_mautrix_discord_appservice_bot_username }}
  104. rate_limited: false
  105. namespaces:
  106. users:
  107. - regex: '^@discord_[0-9]+:{{ matrix_mautrix_discord_homeserver_domain | regex_escape }}$'
  108. exclusive: true
  109. - exclusive: true
  110. regex: '^@{{ matrix_mautrix_discord_appservice_bot_username | regex_escape }}:{{ matrix_mautrix_discord_homeserver_domain | regex_escape }}$'
  111. de.sorunome.msc2409.push_ephemeral: true
  112. matrix_mautrix_discord_registration: "{{ matrix_mautrix_discord_registration_yaml | from_yaml }}"
  113. # Enable End-to-bridge encryption
  114. matrix_mautrix_discord_bridge_encryption_allow: "{{ matrix_bridges_encryption_enabled }}"
  115. matrix_mautrix_discord_bridge_encryption_default: "{{ matrix_mautrix_discord_bridge_encryption_allow }}"
  116. matrix_mautrix_discord_bridge_encryption_key_sharing_allow: "{{ matrix_mautrix_discord_bridge_encryption_allow }}"
  117. # On conduit versions before 0.5.0 this option prevented users from joining spaces created by the bridge.
  118. # Setting this to false fixed the issue.
  119. matrix_mautrix_discord_bridge_restricted_rooms: true