-
-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
36fa948
commit 79206b7
Showing
2 changed files
with
21 additions
and
21 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 |
---|---|---|
|
@@ -36,16 +36,16 @@ services: | |
- --defaultentrypoints=http,https | ||
- --entryPoints=Name:https Address::443 TLS | ||
- --entryPoints=Name:http Address::80 | ||
- --acme | ||
- --acme.email=[email protected] | ||
# - --acme | ||
# - --acme.email=${TRAEFIK_ACME_EMAIL} | ||
# # TODO: envvar for email and default domain | ||
- --acme.httpchallenge | ||
- --acme.httpchallenge.entrypoint=http | ||
- --acme.onhostrule=true | ||
- --acme.entrypoint=https | ||
- --acme.storage=my/key | ||
- --acme.acmelogging | ||
- --acme.caserver=https://acme-staging-v02.api.letsencrypt.org/directory | ||
# - --acme.httpchallenge | ||
# - --acme.httpchallenge.entrypoint=http | ||
# - --acme.onhostrule=true | ||
# - --acme.entrypoint=https | ||
# - --acme.storage=my/key | ||
# - --acme.acmelogging | ||
# - --acme.caserver=https://acme-staging-v02.api.letsencrypt.org/directory | ||
# - --acme.caserver=https://acme-v02.api.letsencrypt.org/directory | ||
deploy: | ||
restart_policy: | ||
|
@@ -92,7 +92,7 @@ services: | |
volumes: | ||
- consul:/consul/data | ||
environment: | ||
- CONSUL_LOCAL_CONFIG={"datacenter":"us_east2","server":true} | ||
- CONSUL_LOCAL_CONFIG={"server":true} | ||
- CONSUL_BIND_INTERFACE=eth0 | ||
- CONSUL_CLIENT_INTERFACE=eth0 | ||
deploy: | ||
|
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 |
---|---|---|
|
@@ -25,19 +25,19 @@ services: | |
- --docker.watch | ||
- --api | ||
- --defaultentrypoints=http,https | ||
- --acme | ||
- --acme.email=[email protected] | ||
# - --acme | ||
# - --acme.email=${TRAEFIK_ACME_EMAIL} | ||
# # TODO: envvar for email and default domain | ||
- --acme.httpchallenge | ||
- --acme.httpchallenge.entrypoint=http | ||
- --acme.onhostrule=true | ||
- --acme.entrypoint=https | ||
- --entryPoints=Name:https Address::443 TLS | ||
- --entryPoints=Name:http Address::80 | ||
- --acme.storage=/etc/traefik/acme/acme.json | ||
- --acme.acmelogging | ||
# - --acme.httpchallenge | ||
# - --acme.httpchallenge.entrypoint=http | ||
# - --acme.onhostrule=true | ||
# - --acme.entrypoint=https | ||
# - --entryPoints=Name:https Address::443 TLS | ||
# - --entryPoints=Name:http Address::80 | ||
# - --acme.storage=/etc/traefik/acme/acme.json | ||
# - --acme.acmelogging | ||
# - --acme.caserver=https://acme-staging-v02.api.letsencrypt.org/directory | ||
- --acme.caserver=https://acme-v02.api.letsencrypt.org/directory | ||
# - --acme.caserver=https://acme-v02.api.letsencrypt.org/directory | ||
deploy: | ||
placement: | ||
constraints: [node.role == manager] | ||
|