3228cfd229
This adds into the Riot config.json the field 'default_server_config.m.homeserver.server_name' with, by default, the value of the playbook's 'matrix_domain' variable. Riot displays this string in its login page and will now say 'Sign in to your Matrix account on example.org' (the server name) instead of 'Sign in ... on matrix.example.org' (the server domain-name). This string can be configured by setting the playbook variable 'matrix_riot_web_default_server_name' to any string, so we can make Riot say for example 'Sign in ... on Our Server'.
80 lines
3.7 KiB
YAML
80 lines
3.7 KiB
YAML
matrix_riot_web_enabled: true
|
|
|
|
matrix_riot_web_docker_image: "vectorim/riot-web:v1.5.10"
|
|
matrix_riot_web_docker_image_force_pull: "{{ matrix_riot_web_docker_image.endswith(':latest') }}"
|
|
|
|
matrix_riot_web_data_path: "{{ matrix_base_data_path }}/riot-web"
|
|
|
|
# Controls whether the matrix-riot-web container exposes its HTTP port (tcp/8080 in the container).
|
|
#
|
|
# Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:8765"), or empty string to not expose.
|
|
matrix_riot_web_container_http_host_bind_port: ''
|
|
|
|
# A list of extra arguments to pass to the container
|
|
matrix_riot_web_container_extra_arguments: []
|
|
|
|
# List of systemd services that matrix-riot-web.service depends on
|
|
matrix_riot_web_systemd_required_services_list: ['docker.service']
|
|
|
|
# Riot config.json customizations
|
|
matrix_riot_web_default_server_name: "{{ matrix_domain }}"
|
|
matrix_riot_web_default_hs_url: ""
|
|
matrix_riot_web_default_is_url: ~
|
|
matrix_riot_web_disable_custom_urls: true
|
|
matrix_riot_web_disable_guests: true
|
|
matrix_riot_web_integrations_ui_url: "https://scalar.vector.im/"
|
|
matrix_riot_web_integrations_rest_url: "https://scalar.vector.im/api"
|
|
matrix_riot_web_integrations_widgets_urls: ["https://scalar.vector.im/api"]
|
|
matrix_riot_web_integrations_jitsi_widget_url: "https://scalar.vector.im/api/widgets/jitsi.html"
|
|
# Riot public room directory server(s)
|
|
matrix_riot_web_roomdir_servers: ['matrix.org']
|
|
matrix_riot_web_welcome_user_id: "@riot-bot:matrix.org"
|
|
# Branding of riot web
|
|
matrix_riot_web_brand: "Riot"
|
|
|
|
# By default, there's no Riot homepage (when logged in). If you wish to have one,
|
|
# point this to a `home.html` template file on your local filesystem.
|
|
matrix_riot_web_embedded_pages_home_path: ~
|
|
|
|
# Controls whether the self-check feature should validate SSL certificates.
|
|
matrix_riot_web_self_check_validate_certificates: true
|
|
|
|
# don't show the registration button on welcome page
|
|
matrix_riot_web_registration_enabled: false
|
|
|
|
# Controls whether Riot shows the presence features
|
|
matrix_riot_web_enable_presence_by_hs_url: ~
|
|
|
|
# Default riot-web configuration template which covers the generic use case.
|
|
# You can customize it by controlling the various variables inside it.
|
|
#
|
|
# For a more advanced customization, you can extend the default (see `matrix_riot_web_configuration_extension_json`)
|
|
# or completely replace this variable with your own template.
|
|
#
|
|
# The side-effect of this lookup is that Ansible would even parse the JSON for us, returning a dict.
|
|
# This is unlike what it does when looking up YAML template files (no automatic parsing there).
|
|
matrix_riot_web_configuration_default: "{{ lookup('template', 'templates/config.json.j2') }}"
|
|
|
|
# Your custom JSON configuration for riot-web should go to `matrix_riot_web_configuration_extension_json`.
|
|
# This configuration extends the default starting configuration (`matrix_riot_web_configuration_default`).
|
|
#
|
|
# You can override individual variables from the default configuration, or introduce new ones.
|
|
#
|
|
# If you need something more special, you can take full control by
|
|
# completely redefining `matrix_riot_web_configuration_default`.
|
|
#
|
|
# Example configuration extension follows:
|
|
#
|
|
# matrix_riot_web_configuration_extension_json: |
|
|
# {
|
|
# "disable_3pid_login": true,
|
|
# "disable_login_language_selector": true
|
|
# }
|
|
matrix_riot_web_configuration_extension_json: '{}'
|
|
|
|
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 {} }}"
|
|
|
|
# Holds the final riot-web configuration (a combination of the default and its extension).
|
|
# You most likely don't need to touch this variable. Instead, see `matrix_riot_web_configuration_default`.
|
|
matrix_riot_web_configuration: "{{ matrix_riot_web_configuration_default|combine(matrix_riot_web_configuration_extension, recursive=True) }}"
|