Jump to content

Traefik

From 1G-N15's Place
Revision as of 08:29, 20 July 2026 by 1G-N15 (talk | contribs) (Created page with "== Redirecting HTTP to HTTPS in K8s == [https://stackoverflow.com/questions/68575472/k3s-redirect-http-to-https This StackOverflow answer] is outdated. Use this instead: ports: web: http: redirections: entryPoint: to: websecure scheme: https permanent: true Feel free to post this as an answer, just link back :)")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Redirecting HTTP to HTTPS in K8s

This StackOverflow answer is outdated. Use this instead:

 ports:
   web:
     http:
       redirections:
         entryPoint:
           to: websecure
           scheme: https
           permanent: true

Feel free to post this as an answer, just link back :)