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.
 
 

29 line
1.0 KiB

  1. #jinja2: lstrip_blocks: True
  2. # Configuration specific to the application service. All fields (unless otherwise marked) are required.
  3. homeserver:
  4. # The domain for the client-server API calls.
  5. url: "{{ matrix_appservice_webhooks_homeserver_url }}"
  6. # The domain part for user IDs on this home server. Usually, but not always, this is the same as the
  7. # home server's URL.
  8. domain: "{{ matrix_domain }}"
  9. # Configuration specific to the bridge. All fields (unless otherwise marked) are required.
  10. webhookBot:
  11. # The localpart to use for the bot. May require re-registering the application service.
  12. localpart: "_webhook"
  13. # Provisioning API options
  14. provisioning:
  15. # Your secret for the API. Required for all provisioning API requests.
  16. secret: '{{ matrix_appservice_webhooks_api_secret }}'
  17. # Configuration related to the web portion of the bridge. Handles the inbound webhooks
  18. web:
  19. hookUrlBase: "{{ matrix_appservice_webhooks_inbound_uri_prefix }}"
  20. logging:
  21. console: true
  22. consoleLevel: {{ matrix_appservice_webhooks_log_level }}
  23. writeFiles: false