Skip to content

Commit

Permalink
Merge pull request stefanprodan#93 from tiangolo/update-traefik-basic…
Browse files Browse the repository at this point in the history
…-auth

Fix incorrect env vars for Traefik deployment
  • Loading branch information
stefanprodan authored Jan 30, 2019
2 parents 38bcf62 + d9ac24f commit b276867
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker-compose.traefik.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ services:
- traefik.redirectorservice.frontend.redirect.entryPoint=https
# Traefik service that listens to HTTPS
- traefik.webservice.frontend.entryPoints=https
- traefik.frontend.auth.basic.users=${ADMIN_PASSWORD}:${HASHED_PASSWORD}
- traefik.frontend.auth.basic.users=${ADMIN_USER}:${HASHED_PASSWORD}
networks:
- default
- net
Expand All @@ -162,7 +162,7 @@ services:
- traefik.redirectorservice.frontend.redirect.entryPoint=https
# Traefik service that listens to HTTPS
- traefik.webservice.frontend.entryPoints=https
- traefik.frontend.auth.basic.users=${ADMIN_PASSWORD}:${HASHED_PASSWORD}
- traefik.frontend.auth.basic.users=${ADMIN_USER}:${HASHED_PASSWORD}
networks:
- default
- net
Expand Down Expand Up @@ -230,7 +230,7 @@ services:
- traefik.redirectorservice.frontend.redirect.entryPoint=https
# Traefik service that listens to HTTPS
- traefik.webservice.frontend.entryPoints=https
- traefik.frontend.auth.basic.users=${ADMIN_PASSWORD}:${HASHED_PASSWORD}
- traefik.frontend.auth.basic.users=${ADMIN_USER}:${HASHED_PASSWORD}
networks:
- default
- net
Expand Down

0 comments on commit b276867

Please sign in to comment.