Advertisement
pgesting

dynamic.yaml

Nov 29th, 2020
749
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. ## Routers
  2. http:
  3. routers:
  4. router-1:
  5. entryPoints:
  6. - "websecure"
  7. rule: "Host(`XXX.XXX`)"
  8. service: "service-1"
  9. tls:
  10. options: acme
  11. domains:
  12. - main: "XXX.XXX"
  13.  
  14. ## Services
  15. http:
  16. services:
  17. service-1:
  18. loadBalancer:
  19. servers:
  20. - url: "192.168.1.13:8888"
  21.  
  22. ## TLS Certs
  23. tls:
  24. stores:
  25. default:
  26. defaultCertificate:
  27. certFile: /etc/traefik/acme/XXX.XXX/XXX.XXX.cer
  28. keyFile: /etc/traefik//acme/XXX.XXX/XXX.XXX.key
  29.  
  30. certificates:
  31. - certFile: /etc/traefik/acme/XXX.XXX/XXX.XXX.cer
  32. keyFile: /etc/traefik//acme/XXX.XXX/XXX.XXX.key
  33. options:
  34. acme:
  35. cipherSuites:
  36. - TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
  37. - TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256
  38. - TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256
  39. - TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
  40. - TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
  41. - TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384
  42. - TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
  43. - TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305
  44. - TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305
  45. - TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
  46. - TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
  47. - TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256
  48. - TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256
  49.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement