Matrix Docker Ansible eploy
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 

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