diff options
author | Francis Lavoie <lavofr@gmail.com> | 2022-05-24 12:06:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-24 10:06:46 -0600 |
commit | 58970cae9265931a15be3b143e49a29931832106 (patch) | |
tree | 9b62c98aded05d41e75b94770cd90a98c5ce7928 | |
parent | 9e760e2e0ccf5922c66cb0d9c39eaf8bfc7be501 (diff) |
httpcaddyfile: Add `{err.*}` placeholder shortcut (#4798)
-rw-r--r-- | caddyconfig/httpcaddyfile/httptype.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/caddyconfig/httpcaddyfile/httptype.go b/caddyconfig/httpcaddyfile/httptype.go index a8d01bc..5d78244 100644 --- a/caddyconfig/httpcaddyfile/httptype.go +++ b/caddyconfig/httpcaddyfile/httptype.go @@ -107,6 +107,7 @@ func (st ServerType) Setup(inputServerBlocks []caddyfile.ServerBlock, {regexp.MustCompile(`{re\.([\w-]*)\.([\w-]*)}`), "{http.regexp.$1.$2}"}, {regexp.MustCompile(`{vars\.([\w-]*)}`), "{http.vars.$1}"}, {regexp.MustCompile(`{rp\.([\w-\.]*)}`), "{http.reverse_proxy.$1}"}, + {regexp.MustCompile(`{err\.([\w-\.]*)}`), "{http.error.$1}"}, } for _, sb := range originalServerBlocks { |