Etcd backend

Træfɪk can be configured to use Etcd as a backend configuration:

  1. ################################################################
  2. # Etcd configuration backend
  3. ################################################################
  4. # Enable Etcd configuration backend
  5. #
  6. # Optional
  7. #
  8. [etcd]
  9. # Etcd server endpoint
  10. #
  11. # Required
  12. #
  13. endpoint = "127.0.0.1:2379"
  14. # Enable watch Etcd changes
  15. #
  16. # Optional
  17. #
  18. watch = true
  19. # Prefix used for KV store.
  20. #
  21. # Optional
  22. #
  23. prefix = "/traefik"
  24. # Override default configuration template. For advanced users :)
  25. #
  26. # Optional
  27. #
  28. # filename = "etcd.tmpl"
  29. # Enable etcd TLS connection
  30. #
  31. # Optional
  32. #
  33. # [etcd.tls]
  34. # ca = "/etc/ssl/ca.crt"
  35. # cert = "/etc/ssl/etcd.crt"
  36. # key = "/etc/ssl/etcd.key"
  37. # insecureskipverify = true

Please refer to the Key Value storage structure section to get documentation on traefik KV structure.