47 lines
913 B
YAML
47 lines
913 B
YAML
api:
|
|
dashboard: true
|
|
debug: false
|
|
|
|
entryPoints:
|
|
web:
|
|
address: ":80"
|
|
http:
|
|
redirections:
|
|
entrypoint:
|
|
to: websecure
|
|
scheme: https
|
|
websecure:
|
|
address: ":443"
|
|
|
|
providers:
|
|
docker:
|
|
endpoint: "unix:///var/run/docker.sock"
|
|
exposedByDefault: false
|
|
network: traefik
|
|
file:
|
|
filename: /etc/traefik/dynamic.yml
|
|
watch: true
|
|
|
|
certificatesResolvers:
|
|
letsencrypt:
|
|
acme:
|
|
email: admin@hyperthrive.io
|
|
storage: /letsencrypt/acme.json
|
|
keyType: EC256
|
|
httpChallenge:
|
|
entryPoint: web
|
|
# Uncomment for staging (testing) - recommended for initial setup
|
|
# caServer: https://acme-staging-v02.api.letsencrypt.org/directory
|
|
|
|
log:
|
|
level: INFO
|
|
filePath: /logs/traefik.log
|
|
|
|
accessLog:
|
|
filePath: /logs/access.log
|
|
bufferingSize: 100
|
|
|
|
metrics:
|
|
prometheus:
|
|
addEntryPointsLabels: true
|
|
addServicesLabels: true |