From ece4339d25be2e44eb211d71aa5b64c8a0e8863b Mon Sep 17 00:00:00 2001 From: a Date: Wed, 21 Aug 2024 14:06:05 -0500 Subject: [PATCH] Update src/docs/markdown/extending-caddy/placeholders.md Co-authored-by: Matt Holt --- src/docs/markdown/extending-caddy/placeholders.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/markdown/extending-caddy/placeholders.md b/src/docs/markdown/extending-caddy/placeholders.md index b4535dc..3416efc 100644 --- a/src/docs/markdown/extending-caddy/placeholders.md +++ b/src/docs/markdown/extending-caddy/placeholders.md @@ -16,7 +16,7 @@ Placeholders are a string in the format `{foo.bar}` used as dynamic configuratio Placeholders-like strings which start with a dollar sign (`{$FOO}`), are evaulated at Caddyfile parse time, and do not need to be dealt with by your plugin. This is because these are not placeholders, but Caddyfile-specific [environmental variable substitution](/docs/caddyfile/concepts#environment-variables), they just happen to share the `{}` syntax. -It is therefore important to understand that `{env.HOST}` is inherently different from something like `{$HOST}` +It is therefore important to understand that `{env.HOST}` is inherently different from something like `{$HOST}`. As an example, see the following caddyfile: ```caddyfile