From 49ed10d2673f5e51691fa6c3cc84454287b2fbf3 Mon Sep 17 00:00:00 2001 From: Francis Lavoie Date: Thu, 18 Jun 2020 16:04:25 -0400 Subject: [PATCH] docs: Fix header example typo Fixes #58 --- src/docs/markdown/caddyfile/directives/header.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/markdown/caddyfile/directives/header.md b/src/docs/markdown/caddyfile/directives/header.md index a497cf7..1dc1eb5 100644 --- a/src/docs/markdown/caddyfile/directives/header.md +++ b/src/docs/markdown/caddyfile/directives/header.md @@ -71,7 +71,7 @@ Multiple header directives that are intended to be mutually-exclusive: ```caddy-d route { - header Cache-Control max=age=3600 + header Cache-Control max-age=3600 header /static/* Cache-Control max-age=31536000 } ```