mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-11-08 11:47:36 +01:00
48a4afb114
This moves the comments from being just in Jinja, to actually ending up in the generated `labels` file, which makes inspection of the final result easier. Also, some new lines were added here and there to make labels more legible. The generated file may still include weird new-lines due to various `if` statements yielding content or not, but that's not so ugly anymore - now that we have proper start/end sections that are visible in the final `labels` file.
54 lines
2.8 KiB
Django/Jinja
54 lines
2.8 KiB
Django/Jinja
{% if matrix_cactus_comments_client_container_labels_traefik_enabled %}
|
|
traefik.enable=true
|
|
|
|
{% if matrix_cactus_comments_client_container_labels_traefik_docker_network %}
|
|
traefik.docker.network={{ matrix_cactus_comments_client_container_labels_traefik_docker_network }}
|
|
{% endif %}
|
|
|
|
|
|
{% if matrix_cactus_comments_client_container_labels_public_enabled %}
|
|
############################################################
|
|
# #
|
|
# Public #
|
|
# #
|
|
############################################################
|
|
|
|
traefik.http.services.matrix-cactus-comments-client.loadbalancer.server.port={{ matrix_cactus_comments_client_environment_variable_server_port }}
|
|
|
|
{% set public_middlewares = [] %}
|
|
|
|
{% if matrix_cactus_comments_client_container_labels_public_traefik_path_prefix != '/' %}
|
|
{% set public_middlewares = public_middlewares + ['matrix-cactus-comments-client-strip-prefix'] %}
|
|
traefik.http.middlewares.matrix-cactus-comments-client-strip-prefix.stripprefix.prefixes={{ matrix_cactus_comments_client_container_labels_public_traefik_path_prefix }}
|
|
{% endif %}
|
|
|
|
traefik.http.routers.matrix-cactus-comments-client-base-domain.rule={{ matrix_cactus_comments_client_container_labels_public_traefik_rule }}
|
|
|
|
{% if matrix_cactus_comments_client_container_labels_public_traefik_priority | int > 0 %}
|
|
traefik.http.routers.matrix-cactus-comments-client-base-domain.priority={{ matrix_cactus_comments_client_container_labels_public_traefik_priority }}
|
|
{% endif %}
|
|
|
|
{% if public_middlewares | length > 0 %}
|
|
traefik.http.routers.matrix-cactus-comments-client-base-domain.middlewares={{ public_middlewares | join(',') }}
|
|
{% endif %}
|
|
|
|
traefik.http.routers.matrix-cactus-comments-client-base-domain.service=matrix-cactus-comments-client
|
|
traefik.http.routers.matrix-cactus-comments-client-base-domain.entrypoints={{ matrix_cactus_comments_client_container_labels_public_traefik_entrypoints }}
|
|
|
|
traefik.http.routers.matrix-cactus-comments-client-base-domain.tls={{ matrix_cactus_comments_client_container_labels_public_traefik_tls | to_json }}
|
|
{% if matrix_cactus_comments_client_container_labels_public_traefik_tls %}
|
|
traefik.http.routers.matrix-cactus-comments-client-base-domain.tls.certResolver={{ matrix_cactus_comments_client_container_labels_public_traefik_tls_certResolver }}
|
|
{% endif %}
|
|
|
|
############################################################
|
|
# #
|
|
# /Public #
|
|
# #
|
|
############################################################
|
|
{% endif %}
|
|
|
|
|
|
{% endif %}
|
|
|
|
{{ matrix_cactus_comments_client_container_labels_additional_labels }}
|