2019-01-12 15:53:00 +00:00
matrix_riot_web_enabled : true
2020-03-15 08:10:41 +00:00
2020-03-15 08:15:27 +00:00
matrix_riot_web_container_image_self_build : false
2019-01-12 15:53:00 +00:00
2020-05-05 11:02:14 +00:00
matrix_riot_web_docker_image : "vectorim/riot-web:v1.6.0"
2019-06-10 11:23:51 +00:00
matrix_riot_web_docker_image_force_pull : "{{ matrix_riot_web_docker_image.endswith(':latest') }}"
2019-01-12 15:53:00 +00:00
matrix_riot_web_data_path : "{{ matrix_base_data_path }}/riot-web"
2020-03-07 23:28:14 +00:00
matrix_riot_web_docker_src_files_path : "{{ matrix_riot_web_data_path }}/docker-src"
2019-01-12 15:53:00 +00:00
2019-05-24 22:41:04 +00:00
# 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 : ''
2019-01-16 16:05:48 +00:00
2019-04-30 14:35:18 +00:00
# A list of extra arguments to pass to the container
matrix_riot_web_container_extra_arguments : [ ]
2019-01-16 16:05:48 +00:00
# List of systemd services that matrix-riot-web.service depends on
matrix_riot_web_systemd_required_services_list : [ 'docker.service' ]
2019-01-12 15:53:00 +00:00
# Riot config.json customizations
2020-02-24 14:00:43 +00:00
matrix_riot_web_default_server_name : "{{ matrix_domain }}"
2019-01-16 16:05:48 +00:00
matrix_riot_web_default_hs_url : ""
matrix_riot_web_default_is_url : ~
2019-01-12 15:53:00 +00:00
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"
2019-01-16 13:03:39 +00:00
matrix_riot_web_integrations_widgets_urls : [ "https://scalar.vector.im/api" ]
2019-01-12 15:53:00 +00:00
matrix_riot_web_integrations_jitsi_widget_url : "https://scalar.vector.im/api/widgets/jitsi.html"
2020-04-28 10:10:33 +00:00
matrix_riot_web_permalinkPrefix : "https://matrix.to"
2019-01-12 15:53:00 +00:00
# Riot public room directory server(s)
matrix_riot_web_roomdir_servers : [ 'matrix.org' ]
matrix_riot_web_welcome_user_id : "@riot-bot:matrix.org"
2019-07-17 13:56:15 +00:00
# Branding of riot web
matrix_riot_web_brand : "Riot"
2019-01-12 15:53:00 +00:00
2020-03-03 21:16:52 +00:00
# URL to Logo on welcome page
2020-03-03 18:01:43 +00:00
matrix_riot_web_welcome_logo : "welcome/images/logo.svg"
2020-03-03 21:16:52 +00:00
# URL of link on welcome image
2020-03-03 18:01:43 +00:00
matrix_riot_web_welcome_logo_link : "https://riot.im"
matrix_riot_web_welcome_headline : "_t('Welcome to Riot.im')"
matrix_riot_web_welcome_text : "_t('Decentralised, encrypted chat & collaboration powered by [matrix]')"
2020-03-03 21:27:39 +00:00
# Links, shown in footer of welcome page:
# [{"text": "Link text", "url": "https://link.target"}, {"text": "Other link"}]
2020-03-06 13:31:15 +00:00
matrix_riot_web_branding_authFooterLinks : ~
2020-03-03 21:27:39 +00:00
# URL to image, shown during Login
2020-03-06 13:31:15 +00:00
matrix_riot_web_branding_authHeaderLogoUrl : "{{ matrix_riot_web_welcome_logo }}"
2020-03-03 21:27:39 +00:00
# URL to Wallpaper, shown in background of welcome page
2020-03-06 13:31:15 +00:00
matrix_riot_web_branding_welcomeBackgroundUrl : ~
2020-03-03 21:27:39 +00:00
2019-02-16 09:48:17 +00:00
# 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 : ~
2019-03-22 07:39:17 +00:00
2020-03-23 15:19:15 +00:00
matrix_riot_web_jitsi_preferredDomain : ''
2019-03-22 07:39:17 +00:00
# Controls whether the self-check feature should validate SSL certificates.
matrix_riot_web_self_check_validate_certificates : true
2019-04-24 23:05:28 +00:00
# don't show the registration button on welcome page
matrix_riot_web_registration_enabled : false
2019-04-27 22:09:21 +00:00
# Controls whether Riot shows the presence features
matrix_riot_web_enable_presence_by_hs_url : ~
2019-08-25 07:37:05 +00:00
2020-02-26 06:40:25 +00:00
# Controls whether custom riot-web themes will be installed.
# When enabled, all themes found in the `matrix_riot_web_themes_repository_url` repository
# will be installed and enabled automatically.
matrix_riot_web_themes_enabled : false
matrix_riot_web_themes_repository_url : https://github.com/aaronraimist/riot-web-themes
2020-04-28 10:10:33 +00:00
# Controls the default riot-web theme
matrix_riot_web_default_theme : 'light'
2020-02-26 06:40:25 +00:00
# Controls the `settingsDefault.custom_themes` setting of the riot-web configuration.
# You can use this setting to define custom themes.
#
# Also, look at `matrix_riot_web_themes_enabled` for a way to pull in a bunch of custom themes automatically.
# If you define your own themes here and set `matrix_riot_web_themes_enabled: true`, your themes will be preserved as well.
#
# Note that for a custom theme to work well, all riot-web/riot-desktop instances that you use must have the same theme installed.
matrix_riot_web_settingDefaults_custom_themes : [ ]
2019-08-25 07:37:05 +00:00
# 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) }}"