Matrix Docker Ansible eploy
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 

119 rader
5.5 KiB

  1. matrix_riot_web_enabled: true
  2. matrix_riot_web_container_image_self_build: false
  3. matrix_riot_web_docker_image: "vectorim/riot-web:v1.5.15"
  4. matrix_riot_web_docker_image_force_pull: "{{ matrix_riot_web_docker_image.endswith(':latest') }}"
  5. matrix_riot_web_data_path: "{{ matrix_base_data_path }}/riot-web"
  6. matrix_riot_web_docker_src_files_path: "{{ matrix_riot_web_data_path }}/docker-src"
  7. # Controls whether the matrix-riot-web container exposes its HTTP port (tcp/8080 in the container).
  8. #
  9. # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:8765"), or empty string to not expose.
  10. matrix_riot_web_container_http_host_bind_port: ''
  11. # A list of extra arguments to pass to the container
  12. matrix_riot_web_container_extra_arguments: []
  13. # List of systemd services that matrix-riot-web.service depends on
  14. matrix_riot_web_systemd_required_services_list: ['docker.service']
  15. # Riot config.json customizations
  16. matrix_riot_web_default_server_name: "{{ matrix_domain }}"
  17. matrix_riot_web_default_hs_url: ""
  18. matrix_riot_web_default_is_url: ~
  19. matrix_riot_web_disable_custom_urls: true
  20. matrix_riot_web_disable_guests: true
  21. matrix_riot_web_integrations_ui_url: "https://scalar.vector.im/"
  22. matrix_riot_web_integrations_rest_url: "https://scalar.vector.im/api"
  23. matrix_riot_web_integrations_widgets_urls: ["https://scalar.vector.im/api"]
  24. matrix_riot_web_integrations_jitsi_widget_url: "https://scalar.vector.im/api/widgets/jitsi.html"
  25. # Riot public room directory server(s)
  26. matrix_riot_web_roomdir_servers: ['matrix.org']
  27. matrix_riot_web_welcome_user_id: "@riot-bot:matrix.org"
  28. # Branding of riot web
  29. matrix_riot_web_brand: "Riot"
  30. # URL to Logo on welcome page
  31. matrix_riot_web_welcome_logo: "welcome/images/logo.svg"
  32. # URL of link on welcome image
  33. matrix_riot_web_welcome_logo_link: "https://riot.im"
  34. matrix_riot_web_welcome_headline: "_t('Welcome to Riot.im')"
  35. matrix_riot_web_welcome_text: "_t('Decentralised, encrypted chat &amp; collaboration powered by [matrix]')"
  36. # Links, shown in footer of welcome page:
  37. # [{"text": "Link text", "url": "https://link.target"}, {"text": "Other link"}]
  38. matrix_riot_web_branding_authFooterLinks: ~
  39. # URL to image, shown during Login
  40. matrix_riot_web_branding_authHeaderLogoUrl: "{{ matrix_riot_web_welcome_logo }}"
  41. # URL to Wallpaper, shown in background of welcome page
  42. matrix_riot_web_branding_welcomeBackgroundUrl: ~
  43. # By default, there's no Riot homepage (when logged in). If you wish to have one,
  44. # point this to a `home.html` template file on your local filesystem.
  45. matrix_riot_web_embedded_pages_home_path: ~
  46. matrix_riot_web_jitsi_preferredDomain: ''
  47. # Controls whether the self-check feature should validate SSL certificates.
  48. matrix_riot_web_self_check_validate_certificates: true
  49. # don't show the registration button on welcome page
  50. matrix_riot_web_registration_enabled: false
  51. # Controls whether Riot shows the presence features
  52. matrix_riot_web_enable_presence_by_hs_url: ~
  53. # Controls whether custom riot-web themes will be installed.
  54. # When enabled, all themes found in the `matrix_riot_web_themes_repository_url` repository
  55. # will be installed and enabled automatically.
  56. matrix_riot_web_themes_enabled: false
  57. matrix_riot_web_themes_repository_url: https://github.com/aaronraimist/riot-web-themes
  58. # Controls the `settingsDefault.custom_themes` setting of the riot-web configuration.
  59. # You can use this setting to define custom themes.
  60. #
  61. # Also, look at `matrix_riot_web_themes_enabled` for a way to pull in a bunch of custom themes automatically.
  62. # If you define your own themes here and set `matrix_riot_web_themes_enabled: true`, your themes will be preserved as well.
  63. #
  64. # Note that for a custom theme to work well, all riot-web/riot-desktop instances that you use must have the same theme installed.
  65. matrix_riot_web_settingDefaults_custom_themes: []
  66. # Default riot-web configuration template which covers the generic use case.
  67. # You can customize it by controlling the various variables inside it.
  68. #
  69. # For a more advanced customization, you can extend the default (see `matrix_riot_web_configuration_extension_json`)
  70. # or completely replace this variable with your own template.
  71. #
  72. # The side-effect of this lookup is that Ansible would even parse the JSON for us, returning a dict.
  73. # This is unlike what it does when looking up YAML template files (no automatic parsing there).
  74. matrix_riot_web_configuration_default: "{{ lookup('template', 'templates/config.json.j2') }}"
  75. # Your custom JSON configuration for riot-web should go to `matrix_riot_web_configuration_extension_json`.
  76. # This configuration extends the default starting configuration (`matrix_riot_web_configuration_default`).
  77. #
  78. # You can override individual variables from the default configuration, or introduce new ones.
  79. #
  80. # If you need something more special, you can take full control by
  81. # completely redefining `matrix_riot_web_configuration_default`.
  82. #
  83. # Example configuration extension follows:
  84. #
  85. # matrix_riot_web_configuration_extension_json: |
  86. # {
  87. # "disable_3pid_login": true,
  88. # "disable_login_language_selector": true
  89. # }
  90. matrix_riot_web_configuration_extension_json: '{}'
  91. matrix_riot_web_configuration_extension: "{{ matrix_riot_web_configuration_extension_json|from_json if matrix_riot_web_configuration_extension_json|from_json is mapping else {} }}"
  92. # Holds the final riot-web configuration (a combination of the default and its extension).
  93. # You most likely don't need to touch this variable. Instead, see `matrix_riot_web_configuration_default`.
  94. matrix_riot_web_configuration: "{{ matrix_riot_web_configuration_default|combine(matrix_riot_web_configuration_extension, recursive=True) }}"