Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

36 строки
1.2 KiB

  1. #jinja2: lstrip_blocks: True
  2. slack_hook_port: {{ matrix_appservice_slack_slack_port }}
  3. inbound_uri_prefix: "{{ matrix_appservice_slack_inbound_uri_prefix }}"
  4. bot_username: "{{ matrix_appservice_slack_bot_name }}"
  5. username_prefix: {{ matrix_appservice_slack_user_prefix }}
  6. homeserver:
  7. server_name: "{{ matrix_domain }}"
  8. url: "{{ matrix_appservice_slack_homeserver_url }}"
  9. media_url: "{{ matrix_appservice_slack_homeserver_media_url }}"
  10. # Real Time Messaging API (RTM)
  11. # Optional if slack_hook_port and inbound_uri_prefix are defined, required otherwise.
  12. #
  13. rtm:
  14. # Use the RTM API to listen for requests, which does not require
  15. # the bridge to listen on the hook port.
  16. # You should leave this enabled, unless you plan to use the
  17. # bridge exclusively for webhooks.
  18. #
  19. enable: true
  20. # Logging level specific to RTM traffic.
  21. #
  22. log_level: "silent"
  23. {% if matrix_appservice_slack_database_engine == 'nedb' %}
  24. dbdir: "/data"
  25. {% else %}
  26. db:
  27. engine: {{ matrix_appservice_slack_database_engine|to_json }}
  28. connectionString: {{ matrix_appservice_slack_database_connectionString|to_json }}
  29. {% endif %}
  30. matrix_admin_room: "{{ matrix_appservice_slack_control_room_id }}"