Matrix Docker Ansible eploy
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 

28 行
1.4 KiB

  1. {#
  2. SPDX-FileCopyrightText: 2024 Slavi Pantaleev
  3. SPDX-License-Identifier: AGPL-3.0-or-later
  4. #}
  5. # The ID doesn't really matter, put whatever you want.
  6. id: {{ matrix_appservice_double_puppet_registration_id | to_json }}
  7. # The URL is intentionally left empty (null), as the homeserver shouldn't
  8. # push events anywhere for this extra appservice. If you use a
  9. # non-spec-compliant server, you may need to put some fake URL here.
  10. url: {{ matrix_appservice_double_puppet_registration_url | to_json }}
  11. # Generate random strings for these three fields. Only the as_token really
  12. # matters, hs_token is never used because there's no url, and the default
  13. # user (sender_localpart) is never used either.
  14. as_token: {{ matrix_appservice_double_puppet_registration_as_token | to_json }}
  15. hs_token: {{ matrix_appservice_double_puppet_registration_hs_token | to_json }}
  16. sender_localpart: {{ matrix_appservice_double_puppet_registration_sender_localpart | to_json}}
  17. # Bridges don't like ratelimiting. This should only apply when using the
  18. # as_token, normal user tokens will still be ratelimited.
  19. rate_limited: false
  20. namespaces:
  21. users:
  22. # Replace your\.domain with your server name (escape dots for regex)
  23. - regex: {{ matrix_appservice_double_puppet_registration_namespace_user_regex | to_json }}
  24. # This must be false so the appservice doesn't take over all users completely.
  25. exclusive: false