mirror of
https://github.com/KevinMidboe/playbooks-retailor.git
synced 2026-09-07 13:32:06 +00:00
42 lines
846 B
Django/Jinja
42 lines
846 B
Django/Jinja
entryPoints:
|
|
web:
|
|
address: ":{{ traefik_web_port }}"
|
|
websecure:
|
|
address: ":{{ traefik_websecure_port }}"
|
|
traefik:
|
|
address: ":{{ traefik_dashboard_port }}"
|
|
metrics:
|
|
address: ":{{ traefik_metrics_port }}"
|
|
|
|
providers:
|
|
file:
|
|
directory: "{{ traefik_dynamic_dir }}"
|
|
watch: true
|
|
|
|
api:
|
|
dashboard: true
|
|
insecure: {{ traefik_dashboard_insecure | lower }}
|
|
|
|
log:
|
|
level: INFO
|
|
|
|
accessLog: {}
|
|
|
|
certificatesResolvers:
|
|
letsencrypt:
|
|
acme:
|
|
email: "{{ traefik_acme_email }}"
|
|
storage: /etc/traefik/acme.json
|
|
{% if traefik_acme_staging | bool %}
|
|
caServer: "https://acme-staging-v02.api.letsencrypt.org/directory"
|
|
{% endif %}
|
|
httpChallenge:
|
|
entryPoint: web
|
|
|
|
metrics:
|
|
prometheus:
|
|
entryPoint: metrics
|
|
addEntryPointsLabels: true
|
|
addServicesLabels: true
|
|
addRoutersLabels: true
|