mirror of
https://github.com/denuitt1/mhr-cfw.git
synced 2026-05-17 21:24:36 +03:00
39 lines
629 B
YAML
39 lines
629 B
YAML
# traefik.yml
|
|
|
|
global:
|
|
checkNewVersion: true
|
|
sendAnonymousUsage: true
|
|
|
|
log:
|
|
level: DEBUG
|
|
|
|
api:
|
|
insecure: false
|
|
dashboard: true
|
|
|
|
providers:
|
|
docker:
|
|
#watch: true
|
|
endpoint: "unix:///var/run/docker.sock"
|
|
exposedByDefault: false
|
|
network: traefik-network
|
|
|
|
entryPoints:
|
|
web:
|
|
address: ":80"
|
|
# http:
|
|
# redirections:
|
|
# entryPoint:
|
|
# to: websecure
|
|
# scheme: https
|
|
websecure:
|
|
address: ":443"
|
|
|
|
certificatesResolvers:
|
|
letsencrypt:
|
|
acme:
|
|
email: ${LETSENCRYPT_EMAIL}
|
|
storage: /letsencrypt/acme.json
|
|
httpChallenge:
|
|
entryPoint: web
|