diff --git a/src/docs/markdown/caddyfile/directives/header.md b/src/docs/markdown/caddyfile/directives/header.md index 1307998..aac956d 100644 --- a/src/docs/markdown/caddyfile/directives/header.md +++ b/src/docs/markdown/caddyfile/directives/header.md @@ -21,7 +21,7 @@ header [] [[+|-|?] [|] []] { } ``` -- **<field>** is the name of the header field. By default, will overwrite any existing field of the same name. Prefix with `+` to add the field instead of replace, or prefix with `-` to remove the field. +- **<field>** is the name of the header field. By default, will add a new field. If `defer` is enabled, it will overwrite any existing field with the same name. Prefix with `+` to always add the field, or prefix with `-` to remove the field. - **<value>** is the header field value, if adding or setting a field. - **<default_value>** is the header field value that will be set only if the header does not already exist. - **<find>** is the substring or regular expression to search for.