45 lines
813 B
Django/Jinja
45 lines
813 B
Django/Jinja
# Managed by Ansible — do not edit manually
|
|
global:
|
|
checkNewVersion: false
|
|
sendAnonymousUsage: false
|
|
|
|
api:
|
|
dashboard: true
|
|
|
|
log:
|
|
level: INFO
|
|
|
|
accessLog:
|
|
filePath: /var/log/traefik/access.log
|
|
bufferingSize: 100
|
|
|
|
entryPoints:
|
|
web:
|
|
address: ":80"
|
|
http:
|
|
redirections:
|
|
entryPoint:
|
|
to: websecure
|
|
scheme: https
|
|
permanent: true
|
|
websecure:
|
|
address: ":443"
|
|
transport:
|
|
respondingTimeouts:
|
|
readTimeout: 0 # no limit — required for large registry layer uploads
|
|
imaps:
|
|
address: ":993"
|
|
|
|
providers:
|
|
docker:
|
|
exposedByDefault: false
|
|
network: "{{ traefik_network }}"
|
|
|
|
certificatesResolvers:
|
|
letsencrypt:
|
|
acme:
|
|
email: "{{ acme_email }}"
|
|
storage: /acme.json
|
|
httpChallenge:
|
|
entryPoint: web
|