Skip to content

Commit b97ed54

Browse files
authored
Microsoft SQL Server with Let's Encrypt Using Docker Compose
1 parent 1a033e4 commit b97ed54

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mssql-server-traefik-letsencrypt-docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ services:
4949
command:
5050
# Set the log level (DEBUG, INFO, WARN, ERROR)
5151
- "--log.level=${TRAEFIK_LOG_LEVEL}"
52-
# Enable the built-in API and web-based dashboard on /dashboard
52+
# Enable the built-in API and web-based dashboard
5353
- "--api.dashboard=true"
5454
# Enable the /ping endpoint so we can health-check Traefik
5555
- "--ping=true"
@@ -99,15 +99,15 @@ services:
9999
retries: 3
100100
start_period: 5s
101101
labels:
102-
# Enable Traefik for this container.
102+
# Enable Traefik for this container
103103
- "traefik.enable=true"
104104
# A router to expose the Traefik dashboard
105105
- "traefik.http.routers.dashboard.rule=Host(`${TRAEFIK_HOSTNAME}`)"
106106
- "traefik.http.routers.dashboard.entrypoints=websecure"
107107
- "traefik.http.routers.dashboard.tls=true"
108108
- "traefik.http.routers.dashboard.tls.certresolver=letsencrypt"
109109
- "traefik.http.routers.dashboard.service=api@internal"
110-
# asic Authentication for the Traefik dashboard
110+
# Basic Authentication for the Traefik dashboard
111111
- "traefik.http.routers.dashboard.middlewares=authtraefik"
112112
- "traefik.http.middlewares.authtraefik.basicauth.users=${TRAEFIK_BASIC_AUTH}"
113113
# Specify the internal server port to the dashboard service

0 commit comments

Comments
 (0)