Minor whitespace fix

This commit is contained in:
Francis Lavoie 2024-09-23 03:30:46 -04:00
parent 147e4e2a0d
commit 77debdef39
No known key found for this signature in database
GPG key ID: 52BC55A211F19186

View file

@ -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
}
```