jms1989

traefik.yml

Sep 6th, 2025
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.06 KB | None | 0 0
  1. # # static configuration
  2. # core:
  3. #   defaultRuleSyntax: v2
  4. global:
  5.   checkNewVersion: true
  6.   sendAnonymousUsage: false
  7. log:
  8.   level: DEBUG
  9.   format: common
  10.   filePath: /dev/shm/traefik.log
  11. api:
  12.   insecure: true
  13.   dashboard: true
  14. entryPoints:
  15.   http:
  16.     address: ":80"
  17.     http:
  18.       redirections:
  19.         entryPoint:
  20.           to: https
  21.           scheme: https
  22.   https:
  23.     address: ":443"
  24. serversTransport:
  25.  #insecureSkipVerify: true
  26.   rootCAs:
  27.    - /etc/certs/pfsense-ca-new.crt
  28. tcpServersTransport:
  29.   tls:
  30.     rootCAs:
  31.      - /etc/certs/pfsense-ca-new.crt
  32. # tracing:
  33. #   serviceName: traefik
  34. #   spanNameLimit: 150
  35.   # jaeger:
  36.   #   samplingServerURL: http://traefik-jaeger:5778/sampling
  37.   #   samplingType: const
  38.   #   samplingParam: 1
  39.   #   localAgentHostPort: traefik-jaeger:6831
  40.   #   propagation: jaeger
  41.   #   traceContextHeaderName: uber-trace-id
  42. providers:
  43.   file:
  44.     watch: true
  45.     directory: /etc/traefik/configs
  46.   docker:
  47.     endpoint: "unix:///var/run/docker.sock"
  48.     exposedByDefault: false
  49.  
  50. certificatesResolvers:
Advertisement
Add Comment
Please, Sign In to add comment