Matrix Docker Ansible eploy
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

147 lines
7.3 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.2.0
  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_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'
  57. matrix_mautrix_discord_appservice_database_type: "{{
  58. {
  59. 'sqlite': 'sqlite3',
  60. 'postgres':'postgres',
  61. }[matrix_mautrix_discord_database_engine]
  62. }}"
  63. matrix_mautrix_discord_appservice_database_uri: "{{
  64. {
  65. 'sqlite': matrix_mautrix_discord_sqlite_database_path_in_container,
  66. 'postgres': matrix_mautrix_discord_database_connection_string,
  67. }[matrix_mautrix_discord_database_engine]
  68. }}"
  69. # Can be set to enable automatic double-puppeting via Shared Secret Auth (https://github.com/devture/matrix-synapse-shared-secret-auth).
  70. matrix_mautrix_discord_login_shared_secret: ''
  71. matrix_mautrix_discord_bridge_login_shared_secret_map:
  72. "{{ {matrix_mautrix_discord_homeserver_domain: matrix_mautrix_discord_login_shared_secret} if matrix_mautrix_discord_login_shared_secret else {} }}"
  73. # Servers to always allow double puppeting from
  74. matrix_mautrix_discord_bridge_double_puppet_server_map:
  75. "{{ matrix_mautrix_discord_homeserver_domain : matrix_mautrix_discord_homeserver_address }}"
  76. # Default mautrix-discord configuration template which covers the generic use case.
  77. # You can customize it by controlling the various variables inside it.
  78. #
  79. # For a more advanced customization, you can extend the default (see `matrix_mautrix_discord_configuration_extension_yaml`)
  80. # or completely replace this variable with your own template.
  81. matrix_mautrix_discord_configuration_yaml: "{{ lookup('template', 'templates/config.yaml.j2') }}"
  82. matrix_mautrix_discord_configuration_extension_yaml: |
  83. # Your custom YAML configuration goes here.
  84. # This configuration extends the default starting configuration (`matrix_mautrix_discord_configuration_yaml`).
  85. #
  86. # You can override individual variables from the default configuration, or introduce new ones.
  87. #
  88. # If you need something more special, you can take full control by
  89. # completely redefining `matrix_mautrix_discord_configuration_yaml`.
  90. 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 {} }}"
  91. # Holds the final configuration (a combination of the default and its extension).
  92. # You most likely don't need to touch this variable. Instead, see `matrix_mautrix_discord_configuration_yaml`.
  93. matrix_mautrix_discord_configuration: "{{ matrix_mautrix_discord_configuration_yaml | from_yaml | combine(matrix_mautrix_discord_configuration_extension, recursive=True) }}"
  94. matrix_mautrix_discord_registration_yaml: |
  95. id: discord
  96. url: {{ matrix_mautrix_discord_appservice_address }}
  97. as_token: "{{ matrix_mautrix_discord_appservice_token }}"
  98. hs_token: "{{ matrix_mautrix_discord_homeserver_token }}"
  99. # See https://github.com/mautrix/signal/issues/43
  100. sender_localpart: _bot_{{ matrix_mautrix_discord_appservice_bot_username }}
  101. rate_limited: false
  102. namespaces:
  103. users:
  104. - regex: '^@discord_[0-9]+:{{ matrix_mautrix_discord_homeserver_domain | regex_escape }}$'
  105. exclusive: true
  106. - exclusive: true
  107. regex: '^@{{ matrix_mautrix_discord_appservice_bot_username | regex_escape }}:{{ matrix_mautrix_discord_homeserver_domain | regex_escape }}$'
  108. de.sorunome.msc2409.push_ephemeral: true
  109. matrix_mautrix_discord_registration: "{{ matrix_mautrix_discord_registration_yaml | from_yaml }}"
  110. # Enable End-to-bridge encryption
  111. matrix_mautrix_discord_bridge_encryption_allow: false
  112. matrix_mautrix_discord_bridge_encryption_default: "{{ matrix_mautrix_discord_bridge_encryption_allow }}"
  113. matrix_mautrix_discord_bridge_encryption_key_sharing_allow: "{{ matrix_mautrix_discord_bridge_encryption_allow }}"
  114. # On conduit versions before 0.5.0 this option prevented users from joining spaces created by the bridge.
  115. # Setting this to false fixed the issue.
  116. matrix_mautrix_discord_bridge_restricted_rooms: true