Matrix Docker Ansible eploy
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 

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