Update element-call-labels.j2-new

This commit is contained in:
Backslash 2024-09-27 10:15:51 +10:00 committed by GitHub
parent 089c5f14c8
commit 3c084e17d2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,19 +1,20 @@
{% if matrix_element_call_container_labels_traefik_enabled %} {% if matrix_element_call_container_labels_traefik_enabled %}
traefik.enable=true traefik.enable=true
# Network configuration for Traefik
{% if matrix_element_call_container_labels_traefik_docker_network %} {% if matrix_element_call_container_labels_traefik_docker_network %}
traefik.docker.network={{ matrix_element_call_container_labels_traefik_docker_network }} traefik.docker.network={{ matrix_element_call_container_labels_traefik_docker_network }}
{% endif %} {% endif %}
# Define the Traefik router rule # Traefik Router and Service configuration for Element Call
traefik.http.routers.element-call-router.rule={{ matrix_element_call_container_labels_traefik_rule }} traefik.http.routers.element-call-router.rule=Host(`{{ matrix_element_call_container_labels_traefik_hostname }}`)
traefik.http.routers.element-call-router.entrypoints={{ matrix_element_call_container_labels_traefik_entrypoints }} traefik.http.routers.element-call-router.entrypoints={{ matrix_element_call_container_labels_traefik_entrypoints }}
traefik.http.routers.element-call-router.tls.certresolver={{ matrix_element_call_container_labels_traefik_tls_certResolver }} traefik.http.routers.element-call-router.tls.certresolver={{ matrix_element_call_container_labels_traefik_tls_certResolver }}
traefik.http.services.element-call-service.loadbalancer.server.port=8080 traefik.http.services.element-call-service.loadbalancer.server.port=8080
{% set middlewares = [] %} {% set middlewares = [] %}
# Define any path prefix redirection or stripping middleware # Path prefix handling for Element Call
{% if matrix_element_call_container_labels_traefik_path_prefix != '/' %} {% if matrix_element_call_container_labels_traefik_path_prefix != '/' %}
traefik.http.middlewares.element-call-slashless-redirect.redirectregex.regex=({{ matrix_element_call_container_labels_traefik_path_prefix | quote }})$ traefik.http.middlewares.element-call-slashless-redirect.redirectregex.regex=({{ matrix_element_call_container_labels_traefik_path_prefix | quote }})$
traefik.http.middlewares.element-call-slashless-redirect.redirectregex.replacement=${1}/ traefik.http.middlewares.element-call-slashless-redirect.redirectregex.replacement=${1}/
@ -23,17 +24,24 @@ traefik.http.middlewares.element-call-strip-prefix.stripprefix.prefixes={{ matri
{% set middlewares = middlewares + ['element-call-strip-prefix'] %} {% set middlewares = middlewares + ['element-call-strip-prefix'] %}
{% endif %} {% endif %}
# Apply any additional response headers if provided # Additional response headers for Element Call
{% if matrix_element_call_container_labels_traefik_additional_response_headers.keys() | length > 0 %} {% if matrix_element_call_container_labels_traefik_additional_response_headers is defined and matrix_element_call_container_labels_traefik_additional_response_headers | length > 0 %}
{% for name, value in matrix_element_call_container_labels_traefik_additional_response_headers.items() %} {% for name, value in matrix_element_call_container_labels_traefik_additional_response_headers.items() %}
traefik.http.middlewares.element-call-add-headers.headers.customresponseheaders.{{ name }}={{ value }} traefik.http.middlewares.element-call-add-headers.headers.customresponseheaders.{{ name }}={{ value }}
{% endfor %} {% endfor %}
{% set middlewares = middlewares + ['element-call-add-headers'] %} {% set middlewares = middlewares + ['element-call-add-headers'] %}
{% endif %} {% endif %}
# Add middlewares to the router # Apply middlewares to the Element Call router
{% if middlewares | length > 0 %} {% if middlewares | length > 0 %}
traefik.http.routers.element-call-router.middlewares={{ middlewares | join(',') }} traefik.http.routers.element-call-router.middlewares={{ middlewares | join(',') }}
{% endif %} {% endif %}
{% endif %} {% endif %}
# Additional labels (if any) specified by the user
{% if matrix_element_call_container_extra_arguments is defined and matrix_element_call_container_extra_arguments | length > 0 %}
{% for key, value in matrix_element_call_container_extra_arguments.items() %}
{{ key }}={{ value }}
{% endfor %}
{% endif %}