infrastructure/roles/matrix_delegate/defaults/main.yml

43 lines
1.6 KiB
YAML

---
# Default variables for the matrix_delegate 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_delegate_install_location: /srv/matrix_delegate
# The certresolver that is used by traefik for this domain
matrix_delegate_traefik_certresolver: letsencrypt_http
# The domain that traefik will serve the delegate under
# NOTE: This should be the same as the servername (right side of user ids).
matrix_delegate_domain: example.com
# The domain that the matrix homeserver is actually available under
matrix_delegate_matrix_domain: matrix.example.com
# The sliding sync proxy url to advertise
matrix_delegate_sliding_sync_enabled: false
matrix_delegate_sliding_sync_url: "https://{{ matrix_synapse_domain }}/sliding-sync"
# Container versions
# renovate: depName=docker.io/library/nginx
matrix_delegate_nginx_version: "1.26"
# Container tag definitions
matrix_delegate_nginx_image_version: "{{ matrix_delegate_nginx_version }}-alpine"