Skip to content

Commit d0acce3

Browse files
authored
GLPI with Let's Encrypt Using Docker Compose
1 parent 490a6b2 commit d0acce3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

glpi-traefik-letsencrypt-docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ services:
8484
command:
8585
# Set the log level (DEBUG, INFO, WARN, ERROR)
8686
- "--log.level=${TRAEFIK_LOG_LEVEL}"
87-
# Enable the built-in API and web-based dashboard on /dashboard
87+
# Enable the built-in API and web-based dashboard
8888
- "--api.dashboard=true"
8989
# Enable the /ping endpoint so we can health-check Traefik
9090
- "--ping=true"
@@ -131,15 +131,15 @@ services:
131131
retries: 3
132132
start_period: 5s
133133
labels:
134-
# Enable Traefik for this container.
134+
# Enable Traefik for this container
135135
- "traefik.enable=true"
136136
# A router to expose the Traefik dashboard
137137
- "traefik.http.routers.dashboard.rule=Host(`${TRAEFIK_HOSTNAME}`)"
138138
- "traefik.http.routers.dashboard.entrypoints=websecure"
139139
- "traefik.http.routers.dashboard.tls=true"
140140
- "traefik.http.routers.dashboard.tls.certresolver=letsencrypt"
141141
- "traefik.http.routers.dashboard.service=api@internal"
142-
# asic Authentication for the Traefik dashboard
142+
# Basic Authentication for the Traefik dashboard
143143
- "traefik.http.routers.dashboard.middlewares=authtraefik"
144144
- "traefik.http.middlewares.authtraefik.basicauth.users=${TRAEFIK_BASIC_AUTH}"
145145
# Specify the internal server port to the dashboard service

0 commit comments

Comments
 (0)