jaysun_n

dynamic/hosts-https.yaml

Jul 18th, 2025
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. http:
  2.  
  3. #----------------------: https://doc.traefik.io/traefik/routing/routers/
  4. routers:
  5.  
  6. proxmox:
  7. entryPoints:
  8. - "https"
  9. rule: "Host(`apollo.mydomain.com`)"
  10. middlewares:
  11. - internal-https-hosts
  12. tls:
  13. certResolver: cloudflare
  14. domains:
  15. - main: "apollo.mydomain.com"
  16. service: proxmox
  17.  
  18. #----------------------: https://doc.traefik.io/traefik/routing/services/
  19. services:
  20.  
  21. proxmox:
  22. loadBalancer:
  23. servers:
  24. - url: "https://192.168.2.100:8006"
  25. passHostHeader: true
  26. serversTransport: "proxmox"
  27.  
  28. #------------: https://doc.traefik.io/traefik/routing/services/#serverstransport_1
  29. #------------: https://www.cloudflare.com/en-gb/learning/ssl/what-is-sni/
  30. serversTransports:
  31.  
  32. proxmox:
  33. insecureSkipVerify: true # set to true if you get "Internal Server Error"
Advertisement
Add Comment
Please, Sign In to add comment