- Added compose.yaml file containg also certs-dumper to extract certificates - Added traefik.yaml configuration file
26 lines
410 B
YAML
26 lines
410 B
YAML
api:
|
|
insecure: false
|
|
dashboard: true
|
|
|
|
entryPoints:
|
|
http:
|
|
address: ":80"
|
|
http:
|
|
redirections:
|
|
entryPoint:
|
|
to: https
|
|
scheme: https
|
|
https:
|
|
address: ":443"
|
|
|
|
providers:
|
|
docker:
|
|
exposedByDefault: false
|
|
|
|
certificatesResolvers:
|
|
letsencrypt:
|
|
acme:
|
|
email: YOUR_EMAIL@example.com
|
|
storage: /acme.json
|
|
httpChallenge:
|
|
entryPoint: web |