From 56d3548fa21df3d738349a68fcfb40495875b712 Mon Sep 17 00:00:00 2001 From: Efren Date: Thu, 10 Aug 2023 00:44:23 +0000 Subject: [PATCH] Add braces to Caddyfile example (#6382) --- docs/guide.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/guide.md b/docs/guide.md index 712a465a7..05af726c6 100644 --- a/docs/guide.md +++ b/docs/guide.md @@ -139,9 +139,9 @@ sudo apt install caddy 1. Replace `/etc/caddy/Caddyfile` using `sudo` so that the file looks like this: ```text - mydomain.com - - reverse_proxy 127.0.0.1:8080 + mydomain.com { + reverse_proxy 127.0.0.1:8080 + } ``` If you want to serve code-server from a sub-path, you can do so as follows: