Guest User

traefik.yaml

a guest
Feb 2nd, 2024
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.19 KB | None | 0 0
  1. global:
  2.   sendAnonymousUsage: false
  3. serversTransport:
  4.   insecureSkipVerify: true
  5. log:
  6.   level: WARN
  7.   format: common
  8. providers:
  9.   docker:
  10.     endpoint: 'tcp://socket-proxy:2375'
  11.     watch: true
  12.     exposedByDefault: true
  13.     swarmMode: false
  14.   file:
  15.     directory: /etc/traefik/conf/
  16.     watch: true
  17. api:
  18.   dashboard: true
  19.   debug: false
  20.   insecure: false
  21. entryPoints:
  22.   web:
  23.     address: ':80'
  24.     http:
  25.       redirections:
  26.         entryPoint:
  27.           to: websecure
  28.           scheme: https
  29.           permanent: true
  30.   websecure:
  31.     address: ':443'
  32.   mongo:
  33.     address: ':27017'
  34. certificatesResolvers:
  35.   letsencrypt:
  36.     acme:
  37.       email: redacted
  38.       storage: /shared/acme.json
  39.       caServer: 'https://acme-v02.api.letsencrypt.org/directory'
  40.       keyType: EC256
  41.       httpChallenge:
  42.         entryPoint: web
  43.       tlsChallenge: {}
  44. tls:
  45.   options:
  46.     default:
  47.       minVersion: VersionTLS12
  48.       sniStrict: true
  49.       curvePreferences:
  50.        - CurveP521
  51.         - CurveP384
  52.       cipherSuites:
  53.        - TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
  54.         - TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384
  55.         - TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256
Advertisement
Add Comment
Please, Sign In to add comment