Skip to content

Instantly share code, notes, and snippets.

@jiri001meitner
Created February 13, 2024 13:12
Show Gist options
  • Save jiri001meitner/c2002c8c9bf310f3ffba4e2df0de37ae to your computer and use it in GitHub Desktop.
Save jiri001meitner/c2002c8c9bf310f3ffba4e2df0de37ae to your computer and use it in GitHub Desktop.
Caddy web server: Caddyfile www redirection snippets
(strip-www) {
@www.{args[0]} host www.{args[0]}
redir @www.{args[0]} {scheme}://{args[0]}{uri} 308
}
(add-www) {
@{args[0]} host {args[0]}
redir @{args[0]} {scheme}://www.{args[0]}{uri} 308
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment