Skip to content

Commit

Permalink
turning off acme by default
Browse files Browse the repository at this point in the history
  • Loading branch information
BretFisher committed Dec 12, 2018
1 parent 36fa948 commit 79206b7
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 21 deletions.
20 changes: 10 additions & 10 deletions stack-proxy-global.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down
22 changes: 11 additions & 11 deletions stack-proxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 79206b7

Please sign in to comment.