From 3ca68ec3dce2c27d0c154fca1fa5c1ada4890acc Mon Sep 17 00:00:00 2001 From: Florian Zirker Date: Sun, 17 Jan 2021 14:32:09 +0100 Subject: [PATCH] Add Traefik Board with HttpBasicAuth --- proxy/docker-compose.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/proxy/docker-compose.yaml b/proxy/docker-compose.yaml index 263e8f6..406c531 100644 --- a/proxy/docker-compose.yaml +++ b/proxy/docker-compose.yaml @@ -7,6 +7,7 @@ services: restart: unless-stopped command: - "--api.insecure=false" + - "--api.dashboard=true" - "--providers.docker=true" - "--providers.docker.exposedbydefault=false" #- "--log.level=DEBUG" @@ -29,6 +30,15 @@ services: - ${VOLUMES_PATH}/letsencrypt:/letsencrypt - $PWD/tls.toml:/etc/traefik/tls.toml labels: + - "traefik.enable=true" + - "traefik.http.routers.dashboard.rule=Host(`traefik.${DOMAIN}`)" + - "traefik.http.routers.dashboard.service=api@internal" + - "traefik.http.routers.dashboard.entrypoints=websecure" + - "traefik.http.routers.dashboard.tls.certresolver=myresolver" + - "traefik.http.routers.gitea.tls.options=intermediate@file" + - "traefik.http.routers.dashboard.middlewares=auth" + - "traefik.http.middlewares.auth.basicauth.users=${HTPASSWD}" + - "traefik.docker.network=web" - "docker.group=web"