Skip to content

Commit 65e196c

Browse files
authored
Zabbix with Let's Encrypt Using Docker Compose
1 parent a78c1d2 commit 65e196c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

zabbix-traefik-letsencrypt-docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ services:
139139
command:
140140
# Set the log level (DEBUG, INFO, WARN, ERROR)
141141
- "--log.level=${TRAEFIK_LOG_LEVEL}"
142-
# Enable the built-in API and web-based dashboard on /dashboard
142+
# Enable the built-in API and web-based dashboard
143143
- "--api.dashboard=true"
144144
# Enable the /ping endpoint so we can health-check Traefik
145145
- "--ping=true"
@@ -192,15 +192,15 @@ services:
192192
retries: 3
193193
start_period: 5s
194194
labels:
195-
# Enable Traefik for this container.
195+
# Enable Traefik for this container
196196
- "traefik.enable=true"
197197
# A router to expose the Traefik dashboard
198198
- "traefik.http.routers.dashboard.rule=Host(`${TRAEFIK_HOSTNAME}`)"
199199
- "traefik.http.routers.dashboard.entrypoints=websecure"
200200
- "traefik.http.routers.dashboard.tls=true"
201201
- "traefik.http.routers.dashboard.tls.certresolver=letsencrypt"
202202
- "traefik.http.routers.dashboard.service=api@internal"
203-
# asic Authentication for the Traefik dashboard
203+
# Basic Authentication for the Traefik dashboard
204204
- "traefik.http.routers.dashboard.middlewares=authtraefik"
205205
- "traefik.http.middlewares.authtraefik.basicauth.users=${TRAEFIK_BASIC_AUTH}"
206206
# Specify the internal server port to the dashboard service

0 commit comments

Comments
 (0)