37 lines
614 B
YAML
37 lines
614 B
YAML
## traefik.yml
|
|
# Entry Points
|
|
entryPoints:
|
|
web:
|
|
address: ":80"
|
|
websecure:
|
|
address: ":443"
|
|
|
|
# Docker configuration backend
|
|
providers:
|
|
docker:
|
|
endpoint: "unix:///var/run/docker.sock"
|
|
exposedbydefault: "false"
|
|
|
|
# API and dashboard configuration
|
|
api:
|
|
insecure: true
|
|
dashboard: true
|
|
|
|
log:
|
|
filePath: "/var/log/traefik.log"
|
|
|
|
accessLog:
|
|
filePath: "/var/log/access.log"
|
|
|
|
certificatesResolvers:
|
|
myresolver:
|
|
acme:
|
|
email: "me+cert@tudattr.dev"
|
|
storage: "/letsencrypt/acme.json"
|
|
dnsChallenge:
|
|
provider: "namecheap"
|
|
|
|
metrics:
|
|
prometheus:
|
|
entrypoint: "traefik"
|