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.
 
 

44 line
1.8 KiB

  1. {
  2. "default_server_config": {
  3. "m.homeserver": {
  4. "base_url": {{ matrix_riot_web_default_hs_url|string|to_json }},
  5. "server_name": {{ matrix_riot_web_default_server_name|string|to_json }}
  6. },
  7. "m.identity_server": {
  8. "base_url": {{ matrix_riot_web_default_is_url|string|to_json }}
  9. }
  10. },
  11. "settingDefaults": {
  12. "custom_themes": {{ matrix_riot_web_settingDefaults_custom_themes|to_json }}
  13. },
  14. "disable_custom_urls": {{ matrix_riot_web_disable_custom_urls|to_json }},
  15. "disable_guests": {{ matrix_riot_web_disable_guests|to_json }},
  16. "brand": {{ matrix_riot_web_brand|to_json }},
  17. "integrations_ui_url": {{ matrix_riot_web_integrations_ui_url|string|to_json }},
  18. "integrations_rest_url": {{ matrix_riot_web_integrations_rest_url|string|to_json }},
  19. "integrations_widgets_urls": {{ matrix_riot_web_integrations_widgets_urls|to_json }},
  20. "integrations_jitsi_widget_url": {{ matrix_riot_web_integrations_jitsi_widget_url|string|to_json }},
  21. "bug_report_endpoint_url": "https://riot.im/bugreports/submit",
  22. "enableLabs": true,
  23. "roomDirectory": {
  24. "servers": {{ matrix_riot_web_roomdir_servers|to_json }}
  25. },
  26. "welcomeUserId": {{ matrix_riot_web_welcome_user_id|to_json }},
  27. {% if matrix_riot_web_enable_presence_by_hs_url is not none %}
  28. "enable_presence_by_hs_url": {{ matrix_riot_web_enable_presence_by_hs_url|to_json }},
  29. {% endif %}
  30. "embeddedPages": {
  31. "homeUrl": {{ matrix_riot_web_embedded_pages_home_url|string|to_json }}
  32. },
  33. {% if matrix_riot_web_jitsi_preferredDomain %}
  34. "jitsi": {
  35. "preferredDomain": {{ matrix_riot_web_jitsi_preferredDomain|to_json }}
  36. },
  37. {% endif %}
  38. "branding": {
  39. "authFooterLinks": {{ matrix_riot_web_branding_authFooterLinks|to_json }},
  40. "authHeaderLogoUrl": {{ matrix_riot_web_branding_authHeaderLogoUrl|to_json }},
  41. "welcomeBackgroundUrl": {{ matrix_riot_web_branding_welcomeBackgroundUrl|to_json }}
  42. }
  43. }