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.
 
 

80 lines
3.7 KiB

  1. matrix_riot_web_enabled: true
  2. matrix_riot_web_docker_image: "vectorim/riot-web:v1.5.10"
  3. matrix_riot_web_docker_image_force_pull: "{{ matrix_riot_web_docker_image.endswith(':latest') }}"
  4. matrix_riot_web_data_path: "{{ matrix_base_data_path }}/riot-web"
  5. # Controls whether the matrix-riot-web container exposes its HTTP port (tcp/8080 in the container).
  6. #
  7. # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:8765"), or empty string to not expose.
  8. matrix_riot_web_container_http_host_bind_port: ''
  9. # A list of extra arguments to pass to the container
  10. matrix_riot_web_container_extra_arguments: []
  11. # List of systemd services that matrix-riot-web.service depends on
  12. matrix_riot_web_systemd_required_services_list: ['docker.service']
  13. # Riot config.json customizations
  14. matrix_riot_web_default_server_name: "{{ matrix_domain }}"
  15. matrix_riot_web_default_hs_url: ""
  16. matrix_riot_web_default_is_url: ~
  17. matrix_riot_web_disable_custom_urls: true
  18. matrix_riot_web_disable_guests: true
  19. matrix_riot_web_integrations_ui_url: "https://scalar.vector.im/"
  20. matrix_riot_web_integrations_rest_url: "https://scalar.vector.im/api"
  21. matrix_riot_web_integrations_widgets_urls: ["https://scalar.vector.im/api"]
  22. matrix_riot_web_integrations_jitsi_widget_url: "https://scalar.vector.im/api/widgets/jitsi.html"
  23. # Riot public room directory server(s)
  24. matrix_riot_web_roomdir_servers: ['matrix.org']
  25. matrix_riot_web_welcome_user_id: "@riot-bot:matrix.org"
  26. # Branding of riot web
  27. matrix_riot_web_brand: "Riot"
  28. # By default, there's no Riot homepage (when logged in). If you wish to have one,
  29. # point this to a `home.html` template file on your local filesystem.
  30. matrix_riot_web_embedded_pages_home_path: ~
  31. # Controls whether the self-check feature should validate SSL certificates.
  32. matrix_riot_web_self_check_validate_certificates: true
  33. # don't show the registration button on welcome page
  34. matrix_riot_web_registration_enabled: false
  35. # Controls whether Riot shows the presence features
  36. matrix_riot_web_enable_presence_by_hs_url: ~
  37. # Default riot-web configuration template which covers the generic use case.
  38. # You can customize it by controlling the various variables inside it.
  39. #
  40. # For a more advanced customization, you can extend the default (see `matrix_riot_web_configuration_extension_json`)
  41. # or completely replace this variable with your own template.
  42. #
  43. # The side-effect of this lookup is that Ansible would even parse the JSON for us, returning a dict.
  44. # This is unlike what it does when looking up YAML template files (no automatic parsing there).
  45. matrix_riot_web_configuration_default: "{{ lookup('template', 'templates/config.json.j2') }}"
  46. # Your custom JSON configuration for riot-web should go to `matrix_riot_web_configuration_extension_json`.
  47. # This configuration extends the default starting configuration (`matrix_riot_web_configuration_default`).
  48. #
  49. # You can override individual variables from the default configuration, or introduce new ones.
  50. #
  51. # If you need something more special, you can take full control by
  52. # completely redefining `matrix_riot_web_configuration_default`.
  53. #
  54. # Example configuration extension follows:
  55. #
  56. # matrix_riot_web_configuration_extension_json: |
  57. # {
  58. # "disable_3pid_login": true,
  59. # "disable_login_language_selector": true
  60. # }
  61. matrix_riot_web_configuration_extension_json: '{}'
  62. 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 {} }}"
  63. # Holds the final riot-web configuration (a combination of the default and its extension).
  64. # You most likely don't need to touch this variable. Instead, see `matrix_riot_web_configuration_default`.
  65. matrix_riot_web_configuration: "{{ matrix_riot_web_configuration_default|combine(matrix_riot_web_configuration_extension, recursive=True) }}"