mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-11-08 11:47:36 +01:00
37 lines
2.0 KiB
Django/Jinja
37 lines
2.0 KiB
Django/Jinja
{% if matrix_appservice_webhooks_container_labels_traefik_enabled %}
|
|
traefik.enable=true
|
|
|
|
{% if matrix_appservice_webhooks_container_labels_traefik_docker_network %}
|
|
traefik.docker.network={{ matrix_appservice_webhooks_container_labels_traefik_docker_network }}
|
|
{% endif %}
|
|
|
|
{#
|
|
Start of public
|
|
#}
|
|
{% if matrix_appservice_webhooks_container_labels_public_endpoint_enabled %}
|
|
traefik.http.middlewares.matrix-appservice-webhooks-public-strip-prefix.stripprefix.prefixes={{ matrix_appservice_webhooks_container_labels_public_endpoint_prefix }}
|
|
|
|
traefik.http.routers.matrix-appservice-webhooks-public-endpoint.rule={{ matrix_appservice_webhooks_container_labels_public_endpoint_traefik_rule }}
|
|
traefik.http.routers.matrix-appservice-webhooks-public-endpoint.middlewares=matrix-appservice-webhooks-public-strip-prefix
|
|
|
|
{% if matrix_appservice_webhooks_container_labels_public_endpoint_traefik_priority | int > 0 %}
|
|
traefik.http.routers.matrix-appservice-webhooks-public-endpoint.priority={{ matrix_appservice_webhooks_container_labels_public_endpoint_traefik_priority }}
|
|
{% endif %}
|
|
|
|
traefik.http.routers.matrix-appservice-webhooks-public-endpoint.service=matrix-appservice-webhooks
|
|
traefik.http.routers.matrix-appservice-webhooks-public-endpoint.entrypoints={{ matrix_appservice_webhooks_container_labels_public_endpoint_traefik_entrypoints }}
|
|
|
|
traefik.http.routers.matrix-appservice-webhooks-public-endpoint.tls={{ matrix_appservice_webhooks_container_labels_public_endpoint_traefik_tls | to_json }}
|
|
{% if matrix_appservice_webhooks_container_labels_public_endpoint_traefik_tls %}
|
|
traefik.http.routers.matrix-appservice-webhooks-public-endpoint.tls.certResolver={{ matrix_appservice_webhooks_container_labels_public_endpoint_traefik_tls_certResolver }}
|
|
{% endif %}
|
|
traefik.http.services.matrix-appservice-webhooks.loadbalancer.server.port={{ matrix_appservice_webhooks_matrix_port }}
|
|
{% endif %}
|
|
{#
|
|
/End of public
|
|
#}
|
|
|
|
{% endif %}
|
|
|
|
{{ matrix_appservice_webhooks_container_labels_additional_labels }}
|