From 992e39fd0a5a8e36714aa27b3089269ac6882319 Mon Sep 17 00:00:00 2001 From: Arsh <69170106+lilnasy@users.noreply.github.com> Date: Thu, 9 Jan 2025 12:31:26 -0500 Subject: [PATCH] header value is not present if field is prefixed with `!` --- src/docs/markdown/caddyfile/directives/encode.md | 2 +- src/docs/markdown/caddyfile/directives/header.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/docs/markdown/caddyfile/directives/encode.md b/src/docs/markdown/caddyfile/directives/encode.md index 9c2a447..29d283f 100644 --- a/src/docs/markdown/caddyfile/directives/encode.md +++ b/src/docs/markdown/caddyfile/directives/encode.md @@ -31,7 +31,7 @@ encode [] { match { status - header + header [] } } ``` diff --git a/src/docs/markdown/caddyfile/directives/header.md b/src/docs/markdown/caddyfile/directives/header.md index a716616..3c99c31 100644 --- a/src/docs/markdown/caddyfile/directives/header.md +++ b/src/docs/markdown/caddyfile/directives/header.md @@ -44,7 +44,7 @@ header [] [[+|-|?|>] [|] []] { # or a match block match { status - header + header [] } } ```