Matrix Docker Ansible eploy
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

35 wiersze
1.1 KiB

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