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

41 lines
824 B
YAML

---
log:
level: "INFO"
providers:
docker:
endpoint: "unix:///var/run/docker.sock"
exposedByDefault: false
network: "proxy"
swarmMode: true
file:
filename: /etc/traefik/file-provider.yml
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
certificatesResolvers:
staging:
acme:
email: "helo@autonomic.zone"
storage: "/etc/letsencrypt/acme.json"
caServer: "https://acme-staging-v02.api.letsencrypt.org/directory"
httpChallenge:
entryPoint: "web"
production:
acme:
email: "helo@autonomic.zone"
storage: "/etc/letsencrypt/acme.json"
httpChallenge:
entryPoint: "web"