65 lines
2.6 KiB
YAML
65 lines
2.6 KiB
YAML
---
|
|
# Default variables for the matrix_elementweb role
|
|
|
|
# Infrastructure
|
|
# Ansible instructions to deploy the infrastructure
|
|
# Copyright (C) 2021 Saibotk
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, version 3 of the License.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
|
|
# The install location
|
|
matrix_elementweb_install_location: /srv/matrix-elementweb
|
|
|
|
# The location to store elementweb related data in
|
|
matrix_elementweb_data_location: "{{ matrix_elementweb_install_location }}/data"
|
|
|
|
# Under which domain should the service be reachable via traefik
|
|
matrix_elementweb_domain: "element.example.com"
|
|
|
|
# The certresolver that is used by traefik for this domain
|
|
matrix_elementweb_traefik_certresolver: letsencrypt_http
|
|
|
|
# renovate: depName=docker.io/vectorim/element-web
|
|
matrix_elementweb_version: "v1.11.67"
|
|
|
|
# Container versions
|
|
matrix_elementweb_image_version: "{{ matrix_elementweb_version }}"
|
|
|
|
# Enable or disable selinux handling
|
|
matrix_elementweb_selinux_enabled: true
|
|
|
|
# The homeserver URL and display name
|
|
matrix_elementweb_base_url: "https://matrix.example.com"
|
|
matrix_elementweb_servername: "example.com"
|
|
|
|
# Controls whether Element shows the presence feature for all (empty list) or specific servers (key = value list with the key being the server url)
|
|
matrix_elementweb_enable_presence_by_hs_url: []
|
|
|
|
# Should users only be allowed to use this instance with the given matrix server?
|
|
matrix_elementweb_disable_custom_urls: true
|
|
|
|
# Should Element-Web disable guests? (without sign-in)
|
|
matrix_elementweb_disable_guests: true
|
|
|
|
# Should Element-Web disable 3PID login? (Login with Email etc)
|
|
matrix_elementweb_disable_3pid_login: false
|
|
|
|
# Integration Server URLs to use (see https://github.com/vector-im/element-web/blob/develop/docs/config.md)
|
|
matrix_elementweb_integrations_ui_url: "https://scalar.vector.im/"
|
|
matrix_elementweb_integrations_rest_url: "https://scalar.vector.im/api"
|
|
matrix_elementweb_integrations_widgets_urls: ["https://scalar.vector.im/api"]
|
|
matrix_elementweb_integrations_jitsi_widget_url: "https://scalar.vector.im/api/widgets/jitsi.html"
|
|
|
|
# Element Web public room directory server(s)
|
|
matrix_elementweb_roomdir_servers: ['matrix.org']
|