mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2026-04-09 18:35:38 +00:00
* Synapse Admin is Ketesa now! * i18n changes * add automatic migration * fix migration version in vars * add a note about routing for OIDC Auth * mention v1.0.0 announcement blog post * Update docs/container-images.md Co-authored-by: Suguru Hirahara <luixxiul@users.noreply.github.com> * Update CHANGELOG.md Co-authored-by: Suguru Hirahara <luixxiul@users.noreply.github.com> --------- Co-authored-by: Suguru Hirahara <luixxiul@users.noreply.github.com>
60 lines
2.7 KiB
Django/Jinja
60 lines
2.7 KiB
Django/Jinja
{#
|
|
SPDX-FileCopyrightText: 2023 - 2024 Slavi Pantaleev
|
|
SPDX-FileCopyrightText: 2025 MDAD project contributors
|
|
SPDX-FileCopyrightText: 2026 Nikita Chernyi
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
#}
|
|
|
|
{% if matrix_ketesa_container_labels_traefik_enabled %}
|
|
traefik.enable=true
|
|
|
|
{% if matrix_ketesa_container_labels_traefik_docker_network %}
|
|
traefik.docker.network={{ matrix_ketesa_container_labels_traefik_docker_network }}
|
|
{% endif %}
|
|
|
|
traefik.http.services.matrix-ketesa.loadbalancer.server.port=8080
|
|
|
|
{% set middlewares = [] %}
|
|
|
|
{% if matrix_ketesa_container_labels_traefik_ipallowlist_sourcerange | length > 0 %}
|
|
traefik.http.middlewares.matrix-ketesa-ipallowlist.ipallowlist.sourcerange={{ matrix_ketesa_container_labels_traefik_ipallowlist_sourcerange | join(',') }}
|
|
{% set middlewares = middlewares + ['matrix-ketesa-ipallowlist'] %}
|
|
{% endif %}
|
|
|
|
{% if matrix_ketesa_container_labels_traefik_path_prefix != '/' %}
|
|
traefik.http.middlewares.matrix-ketesa-slashless-redirect.redirectregex.regex=({{ matrix_ketesa_container_labels_traefik_path_prefix | quote }})$
|
|
traefik.http.middlewares.matrix-ketesa-slashless-redirect.redirectregex.replacement=${1}/
|
|
{% set middlewares = middlewares + ['matrix-ketesa-slashless-redirect'] %}
|
|
{% endif %}
|
|
|
|
{% if matrix_ketesa_container_labels_traefik_path_prefix != '/' %}
|
|
traefik.http.middlewares.matrix-ketesa-strip-prefix.stripprefix.prefixes={{ matrix_ketesa_container_labels_traefik_path_prefix }}
|
|
{% set middlewares = middlewares + ['matrix-ketesa-strip-prefix'] %}
|
|
{% endif %}
|
|
|
|
{% if matrix_ketesa_container_labels_traefik_additional_response_headers.keys() | length > 0 %}
|
|
{% for name, value in matrix_ketesa_container_labels_traefik_additional_response_headers.items() %}
|
|
traefik.http.middlewares.matrix-ketesa-add-headers.headers.customresponseheaders.{{ name }}={{ value }}
|
|
{% endfor %}
|
|
{% set middlewares = middlewares + ['matrix-ketesa-add-headers'] %}
|
|
{% endif %}
|
|
|
|
traefik.http.routers.matrix-ketesa.rule={{ matrix_ketesa_container_labels_traefik_rule }}
|
|
{% if matrix_ketesa_container_labels_traefik_priority | int > 0 %}
|
|
traefik.http.routers.matrix-ketesa.priority={{ matrix_ketesa_container_labels_traefik_priority }}
|
|
{% endif %}
|
|
{% if middlewares | length > 0 %}
|
|
traefik.http.routers.matrix-ketesa.middlewares={{ middlewares | join(',') }}
|
|
{% endif %}
|
|
traefik.http.routers.matrix-ketesa.service=matrix-ketesa
|
|
traefik.http.routers.matrix-ketesa.entrypoints={{ matrix_ketesa_container_labels_traefik_entrypoints }}
|
|
traefik.http.routers.matrix-ketesa.tls={{ matrix_ketesa_container_labels_traefik_tls | to_json }}
|
|
{% if matrix_ketesa_container_labels_traefik_tls %}
|
|
traefik.http.routers.matrix-ketesa.tls.certResolver={{ matrix_ketesa_container_labels_traefik_tls_certResolver }}
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
{{ matrix_ketesa_container_labels_additional_labels }}
|