enable tls

This commit is contained in:
Philipp Rothmann 2022-01-13 17:25:41 +01:00
parent 6f98bba4bb
commit 29eae8f041
2 changed files with 5 additions and 3 deletions

View File

@ -1,4 +1,5 @@
TYPE=wekan
LETS_ENCRYPT_ENV=production
SECRET_SSO_SECRET_VERSION=v1
MONGO_URL=mongodb://db:27017/wekan

View File

@ -68,9 +68,10 @@ services:
labels:
- "traefik.enable=true"
- "traefik.docker.network=proxy"
- "traefik.http.services.board.loadbalancer.server.port=8080"
- "traefik.http.routers.board.rule=Host(`${DOMAIN}`)"
- "traefik.http.routers.board.entrypoints=web"
- "traefik.http.services.${STACK_NAME}.loadbalancer.server.port=8080"
- "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`)"
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
- "coop-cloud.${STACK_NAME}.app.version=1.0.0+v5.41"
volumes: