Matrix Docker Ansible eploy
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 

25 řádky
1.2 KiB

  1. #jinja2: lstrip_blocks: "True"
  2. {
  3. "default_hs_url": {{ matrix_riot_web_default_hs_url|string|to_json }},
  4. "default_is_url": {{ matrix_riot_web_default_is_url|string|to_json }},
  5. "disable_custom_urls": {{ matrix_riot_web_disable_custom_urls|to_json }},
  6. "disable_guests": {{ matrix_riot_web_disable_guests|to_json }},
  7. "brand": {{ matrix_riot_web_brand|to_json }},
  8. "integrations_ui_url": {{ matrix_riot_web_integrations_ui_url|string|to_json }},
  9. "integrations_rest_url": {{ matrix_riot_web_integrations_rest_url|string|to_json }},
  10. "integrations_widgets_urls": {{ matrix_riot_web_integrations_widgets_urls|to_json }},
  11. "integrations_jitsi_widget_url": {{ matrix_riot_web_integrations_jitsi_widget_url|string|to_json }},
  12. "bug_report_endpoint_url": "https://riot.im/bugreports/submit",
  13. "enableLabs": true,
  14. "roomDirectory": {
  15. "servers": {{ matrix_riot_web_roomdir_servers|to_json }}
  16. },
  17. "welcomeUserId": {{ matrix_riot_web_welcome_user_id|to_json }},
  18. {% if matrix_riot_web_enable_presence_by_hs_url is not none %}
  19. "enable_presence_by_hs_url": {{ matrix_riot_web_enable_presence_by_hs_url|to_json }},
  20. {% endif %}
  21. "embeddedPages": {
  22. "homeUrl": {{ matrix_riot_web_embedded_pages_home_url|string|to_json }}
  23. }
  24. }