diff --git a/src/docs/markdown/extending-caddy/placeholders.md b/src/docs/markdown/extending-caddy/placeholders.md index ba07ba6..efb4743 100644 --- a/src/docs/markdown/extending-caddy/placeholders.md +++ b/src/docs/markdown/extending-caddy/placeholders.md @@ -21,11 +21,11 @@ It is therefore important to understand that `{env.HOST}` is inherently differen As an example, see the following Caddyfile: ```caddyfile :8080 { - respond {$HOST} 200 + respond {$HOST} 200 } :8081 { - respond {env.HOST} 200 + respond {env.HOST} 200 } ```