40 lines
600 B
YAML
40 lines
600 B
YAML
# Traefik Static Configuration
|
|
api:
|
|
dashboard: true
|
|
insecure: true
|
|
|
|
# Enable Prometheus metrics
|
|
metrics:
|
|
prometheus:
|
|
addEntryPointsLabels: true
|
|
addRoutersLabels: true
|
|
addServicesLabels: true
|
|
|
|
entryPoints:
|
|
web:
|
|
address: ":80"
|
|
websecure:
|
|
address: ":443"
|
|
|
|
providers:
|
|
file:
|
|
directory: /etc/traefik/dynamic
|
|
watch: true
|
|
|
|
log:
|
|
level: INFO
|
|
|
|
accessLog: {}
|
|
|
|
experimental:
|
|
localPlugins:
|
|
rewrite-body:
|
|
moduleName: "github.com/packruler/rewrite-body"
|
|
|
|
# Enable OpenTelemetry tracing
|
|
tracing:
|
|
otlp:
|
|
grpc:
|
|
endpoint: jaeger:4317
|
|
insecure: true
|