This repository has been archived on 2020-09-29. You can view files and clone it, but cannot push or open issues or pull requests.
traefik.autonomic.zone/configs/prod/traefik.yml

33 lines
621 B
YAML
Raw Normal View History

2020-04-25 09:24:49 +00:00
---
log:
2020-04-30 13:24:16 +00:00
level: "INFO"
2020-04-25 09:24:49 +00:00
providers:
docker:
2020-04-25 09:57:28 +00:00
endpoint: "unix:///var/run/docker.sock"
2020-04-25 09:24:49 +00:00
exposedByDefault: false
2020-04-25 10:08:00 +00:00
network: "proxy"
2020-04-25 09:57:28 +00:00
swarmMode: true
2020-04-25 09:24:49 +00:00
api:
dashboard: true
debug: true
entrypoints:
web:
address: ":80"
web-secure:
address: ":443"
dashboard:
address: ":8080"
# NOTE(decentral1se): still in experiment mode, so using staging certs
2020-04-25 09:24:49 +00:00
certificatesResolvers:
2020-04-25 10:29:53 +00:00
staging:
2020-04-25 09:24:49 +00:00
acme:
email: "helo@autonomic.zone"
2020-04-25 10:51:44 +00:00
storage: "/etc/letsencrypt/acme.json"
2020-04-25 09:24:49 +00:00
caServer: "https://acme-staging-v02.api.letsencrypt.org/directory"
2020-04-25 10:29:53 +00:00
httpChallenge:
entryPoint: "web"