| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- api:
- insecure: true
- dashboard: true
- providers:
- docker:
- endpoint: unix:///var/run/docker.sock
- file:
- filename: /etc/traefik/static.yaml
- watch: true
- entryPoints:
- gitssh:
- address: ":10022"
- web:
- address: ":80"
- http:
- redirections:
- entryPoint:
- to: websecure
- scheme: https
- websecure:
- address: ":443"
- certificatesResolvers:
- le:
- acme:
- email: jason@jasonplayne.com
- storage: /etc/traefik/acme.json
- httpChallenge:
- # used during the challenge
- entryPoint: web
- #accessLog: {}
- log:
- level: DEBUG
- metrics:
- prometheus: {}
|