Ajoute la possibilité d'utiliser ssl sur traefik
This commit is contained in:
parent
03ffd2479c
commit
cd1930ca32
2 changed files with 6 additions and 0 deletions
|
@ -2,3 +2,4 @@ docker_roundcube_aspell_dicts: fr
|
||||||
docker_roundcube_oauth_login_redirect: "true"
|
docker_roundcube_oauth_login_redirect: "true"
|
||||||
docker_roundcube_oauth_scope: "profile email"
|
docker_roundcube_oauth_scope: "profile email"
|
||||||
docker_roundcube_oauth_identity_fields_array: "['email']"
|
docker_roundcube_oauth_identity_fields_array: "['email']"
|
||||||
|
docker_roundcube_traefik_enable_ssl: false
|
||||||
|
|
|
@ -14,7 +14,12 @@ services:
|
||||||
labels:
|
labels:
|
||||||
- "traefik.enable=true"
|
- "traefik.enable=true"
|
||||||
- "traefik.docker.network=traefik"
|
- "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"
|
- "traefik.http.routers.{{ docker_roundcube_service_id }}.entrypoints=web"
|
||||||
|
{% endif %}
|
||||||
- "traefik.http.routers.{{ docker_roundcube_service_id }}.rule=Host(`{{ docker_roundcube_fqdn }}`)"
|
- "traefik.http.routers.{{ docker_roundcube_service_id }}.rule=Host(`{{ docker_roundcube_fqdn }}`)"
|
||||||
- "traefik.http.services.{{ docker_roundcube_service_id }}.loadbalancer.server.port=80"
|
- "traefik.http.services.{{ docker_roundcube_service_id }}.loadbalancer.server.port=80"
|
||||||
networks:
|
networks:
|
||||||
|
|
Loading…
Reference in a new issue