-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ability to enable ACME generation of SSL Certs
If the user enables USE_ACME, Traefik will attempt to acquire an SSL Certificate for ${DOMAIN} Added the following variables with the defaults USE_ACME=false ACME_EMAIL-your-email ACME_SERVER=https://acme-v02.api.letsencrypt.org/director TRAEFIK_LOG_LEVEL=ERROR
- Loading branch information
Showing
5 changed files
with
69 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -91,3 +91,4 @@ Dockerfile | |
#=================== | ||
# User provided certs for TLS. | ||
certs | ||
acme |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
version: "3.7" | ||
services: | ||
traefik: | ||
command: | ||
- --api.insecure=${EXPOSE_TRAEFIK_DASHBOARD:-false} | ||
- --api.dashboard=${EXPOSE_TRAEFIK_DASHBOARD:-false} | ||
- --api.debug=${EXPOSE_TRAEFIK_DASHBOARD:-false} | ||
- --entryPoints.http.address=:80 | ||
- --entryPoints.https.address=:443 | ||
- --entryPoints.mysql.address=:3306 | ||
- --entryPoints.postgresql.address=:5432 | ||
- --entryPoints.fcrepo.address=:8081 | ||
- --entryPoints.blazegraph.address=:8082 | ||
- --entryPoints.activemq.address=:8161 | ||
- --entryPoints.solr.address=:8983 | ||
- --entryPoints.code-server.address=:8443 | ||
- --log.level=${TRAEFIK_LOG_LEVEL-ERROR} | ||
- --providers.docker | ||
- --providers.docker.network=gateway | ||
- --providers.docker.exposedByDefault=false | ||
- --providers.file.filename=/etc/traefik/tls.yml | ||
- '--providers.docker.defaultRule=Host(`${DOMAIN}`)' | ||
- --certificatesresolvers.myresolver.acme.httpchallenge=true | ||
- --certificatesresolvers.myresolver.acme.httpchallenge.entrypoint=http | ||
- --certificatesresolvers.myresolver.acme.email=${ACME_EMAIL-your-email@example.com} | ||
- --certificatesresolvers.myresolver.acme.storage=/acme/acme.json | ||
- --certificatesResolvers.myresolver.acme.caServer=${ACME_SERVER-https://acme-v02.api.letsencrypt.org/directory} | ||
volumes: | ||
- ./acme:/acme:rw | ||
cantaloupe: | ||
labels: | ||
- traefik.http.routers.${COMPOSE_PROJECT_NAME-isle-dc}-cantaloupe_https.tls.certresolver=myresolver | ||
drupal: | ||
labels: | ||
- traefik.http.routers.${COMPOSE_PROJECT_NAME-isle-dc}-drupal_https.tls.certresolver=myresolver | ||
matomo: | ||
labels: | ||
- traefik.http.routers.${COMPOSE_PROJECT_NAME-isle-dc}-matomo_https.tls.certresolver=myresolver |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters