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.
 
 

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