mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2026-09-02 14:03:16 +00:00
Fix Honoroit metrics Traefik routing
This commit is contained in:
@@ -15,7 +15,6 @@ traefik.docker.network={{ matrix_bot_honoroit_container_labels_traefik_docker_ne
|
|||||||
traefik.http.services.matrix-bot-honoroit-metrics.loadbalancer.server.port=8080
|
traefik.http.services.matrix-bot-honoroit-metrics.loadbalancer.server.port=8080
|
||||||
|
|
||||||
{% set middlewares = [] %}
|
{% set middlewares = [] %}
|
||||||
{% set middlewares_metrics = [] %}
|
|
||||||
|
|
||||||
{% if matrix_bot_honoroit_container_labels_traefik_path_prefix != '/' %}
|
{% if matrix_bot_honoroit_container_labels_traefik_path_prefix != '/' %}
|
||||||
traefik.http.middlewares.matrix-bot-honoroit-slashless-redirect.redirectregex.regex=({{ matrix_bot_honoroit_container_labels_traefik_path_prefix | quote }})$
|
traefik.http.middlewares.matrix-bot-honoroit-slashless-redirect.redirectregex.regex=({{ matrix_bot_honoroit_container_labels_traefik_path_prefix | quote }})$
|
||||||
@@ -35,19 +34,19 @@ traefik.http.middlewares.matrix-bot-honoroit-add-headers.headers.customresponseh
|
|||||||
{% set middlewares = middlewares + ['matrix-bot-honoroit-add-headers'] %}
|
{% set middlewares = middlewares + ['matrix-bot-honoroit-add-headers'] %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if middlewares_metrics | length > 0 %}
|
|
||||||
traefik.http.routers.matrix-bot-honoroit-metrics.rule={{ matrix_bot_honoroit_container_labels_traefik_metrics_rule }}
|
traefik.http.routers.matrix-bot-honoroit-metrics.rule={{ matrix_bot_honoroit_container_labels_traefik_metrics_rule }}
|
||||||
{% if matrix_bot_honoroit_container_labels_traefik_priority | int > 0 %}
|
{% if matrix_bot_honoroit_container_labels_traefik_priority | int > 0 %}
|
||||||
traefik.http.routers.matrix-bot-honoroit-metrics.priority={{ matrix_bot_honoroit_container_labels_traefik_priority }}
|
traefik.http.routers.matrix-bot-honoroit-metrics.priority={{ matrix_bot_honoroit_container_labels_traefik_priority }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
traefik.http.routers.matrix-bot-honoroit-metrics.service=matrix-bot-honoroit-metrics
|
traefik.http.routers.matrix-bot-honoroit-metrics.service=matrix-bot-honoroit-metrics
|
||||||
traefik.http.routers.matrix-bot-honoroit-metrics.middlewares={{ middlewares_metrics | join(',') }}
|
{% if middlewares | length > 0 %}
|
||||||
|
traefik.http.routers.matrix-bot-honoroit-metrics.middlewares={{ middlewares | join(',') }}
|
||||||
|
{% endif %}
|
||||||
traefik.http.routers.matrix-bot-honoroit-metrics.entrypoints={{ matrix_bot_honoroit_container_labels_traefik_entrypoints }}
|
traefik.http.routers.matrix-bot-honoroit-metrics.entrypoints={{ matrix_bot_honoroit_container_labels_traefik_entrypoints }}
|
||||||
traefik.http.routers.matrix-bot-honoroit-metrics.tls={{ matrix_bot_honoroit_container_labels_traefik_tls | to_json }}
|
traefik.http.routers.matrix-bot-honoroit-metrics.tls={{ matrix_bot_honoroit_container_labels_traefik_tls | to_json }}
|
||||||
{% if matrix_bot_honoroit_container_labels_traefik_tls %}
|
{% if matrix_bot_honoroit_container_labels_traefik_tls %}
|
||||||
traefik.http.routers.matrix-bot-honoroit-metrics.tls.certResolver={{ matrix_bot_honoroit_container_labels_traefik_tls_certResolver }}
|
traefik.http.routers.matrix-bot-honoroit-metrics.tls.certResolver={{ matrix_bot_honoroit_container_labels_traefik_tls_certResolver }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user