Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

27 строки
1.2 KiB

  1. {% if matrix_corporal_container_labels_traefik_enabled %}
  2. traefik.enable=true
  3. {% if matrix_corporal_container_labels_traefik_docker_network %}
  4. traefik.docker.network={{ matrix_corporal_container_labels_traefik_docker_network }}
  5. {% endif %}
  6. {# HTTP API #}
  7. {% if matrix_corporal_container_labels_api_enabled %}
  8. traefik.http.routers.matrix-corporal-api.rule={{ matrix_corporal_container_labels_api_traefik_rule }}
  9. {% if matrix_corporal_container_labels_api_traefik_priority | int > 0 %}
  10. traefik.http.routers.matrix-corporal-api.priority={{ matrix_corporal_container_labels_api_traefik_priority }}
  11. {% endif %}
  12. traefik.http.routers.matrix-corporal-api.service=matrix-corporal-api
  13. traefik.http.routers.matrix-corporal-api.entrypoints={{ matrix_corporal_container_labels_api_traefik_entrypoints }}
  14. traefik.http.routers.matrix-corporal-api.tls={{ matrix_corporal_container_labels_api_traefik_tls | to_json }}
  15. {% if matrix_corporal_container_labels_api_traefik_tls %}
  16. traefik.http.routers.matrix-corporal-api.tls.certResolver={{ matrix_corporal_container_labels_api_traefik_tls_certResolver }}
  17. {% endif %}
  18. traefik.http.services.matrix-corporal-api.loadbalancer.server.port=41081
  19. {% endif %}
  20. {% endif %}
  21. {{ matrix_corporal_container_labels_additional_labels }}