From 9594e4bc4bd0f93feaf18885cd5272be746bb89f Mon Sep 17 00:00:00 2001 From: Matthew Holt Date: Sat, 16 May 2020 12:49:29 -0600 Subject: [PATCH] docs: Fix typo in header directive example --- 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 feac2e5..916fb74 100644 --- a/src/docs/markdown/caddyfile/directives/header.md +++ b/src/docs/markdown/caddyfile/directives/header.md @@ -72,6 +72,6 @@ Multiple header directives that are intended to be mutually-exclusive: ``` route { header Cache-Control max=age=3600 - header /static/* Cache-Control max=age=31536000 + header /static/* Cache-Control max-age=31536000 } ```