Ajoute la possibilité d'utiliser ssl sur traefik

This commit is contained in:
Navas 2024-11-12 17:16:53 +01:00
parent 03ffd2479c
commit cd1930ca32
2 changed files with 6 additions and 0 deletions

View file

@ -2,3 +2,4 @@ docker_roundcube_aspell_dicts: fr
docker_roundcube_oauth_login_redirect: "true"
docker_roundcube_oauth_scope: "profile email"
docker_roundcube_oauth_identity_fields_array: "['email']"
docker_roundcube_traefik_enable_ssl: false

View file

@ -14,7 +14,12 @@ services:
labels:
- "traefik.enable=true"
- "traefik.docker.network=traefik"
{% if docker_roundcube_traefik_enable_ssl %}
- "traefik.http.routers.{{ docker_roundcube_service_id }}.entrypoints=websecure"
- "traefik.http.routers.{{ docker_roundcube_service_id }}.tls"
{% else %}
- "traefik.http.routers.{{ docker_roundcube_service_id }}.entrypoints=web"
{% endif %}
- "traefik.http.routers.{{ docker_roundcube_service_id }}.rule=Host(`{{ docker_roundcube_fqdn }}`)"
- "traefik.http.services.{{ docker_roundcube_service_id }}.loadbalancer.server.port=80"
networks: