Skip to content

Commit d0ba7ae

Browse files
authored
Authelia with Let's Encrypt Using Docker Compose
1 parent 3090f0a commit d0ba7ae

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

authelia-traefik-letsencrypt-docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ services:
106106
command:
107107
# Set the log level (DEBUG, INFO, WARN, ERROR)
108108
- "--log.level=${TRAEFIK_LOG_LEVEL}"
109-
# Enable the built-in API and web-based dashboard on /dashboard
109+
# Enable the built-in API and web-based dashboard
110110
- "--api.dashboard=true"
111111
# Enable the /ping endpoint so we can health-check Traefik
112112
- "--ping=true"
@@ -153,15 +153,15 @@ services:
153153
retries: 3
154154
start_period: 5s
155155
labels:
156-
# Enable Traefik for this container.
156+
# Enable Traefik for this container
157157
- "traefik.enable=true"
158158
# A router to expose the Traefik dashboard
159159
- "traefik.http.routers.dashboard.rule=Host(`${TRAEFIK_HOSTNAME}`)"
160160
- "traefik.http.routers.dashboard.entrypoints=websecure"
161161
- "traefik.http.routers.dashboard.tls=true"
162162
- "traefik.http.routers.dashboard.tls.certresolver=letsencrypt"
163163
- "traefik.http.routers.dashboard.service=api@internal"
164-
# asic Authentication for the Traefik dashboard
164+
# Basic Authentication for the Traefik dashboard
165165
- "traefik.http.routers.dashboard.middlewares=authtraefik"
166166
- "traefik.http.middlewares.authtraefik.basicauth.users=${TRAEFIK_BASIC_AUTH}"
167167
# Specify the internal server port to the dashboard service

0 commit comments

Comments
 (0)