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.
 
 

22 lines
1.3 KiB

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