From 9ff4626d25aa28891e92d533f6513a43e3374e13 Mon Sep 17 00:00:00 2001
From: Alex Nordstrom <6267244+HyperEpsilon@users.noreply.github.com>
Date: Wed, 29 May 2024 19:48:39 +0000
Subject: [PATCH] fix: change callout metadata regex to include non-letter characters (#1174)

---
 docs/hosting.md |   18 ++++++++++++++++++
 1 files changed, 18 insertions(+), 0 deletions(-)

diff --git a/docs/hosting.md b/docs/hosting.md
index eeb9308..e5ef9a6 100644
--- a/docs/hosting.md
+++ b/docs/hosting.md
@@ -250,3 +250,21 @@
     }
 }
 ```
+
+### Using Caddy
+
+Here's and example of how to do this with Caddy:
+
+```caddy title="Caddyfile"
+example.com {
+    root * /path/to/quartz/public
+    try_files {path} {path}.html {path}/ =404
+    file_server
+    encode gzip
+
+    handle_errors {
+        rewrite * /{err.status_code}.html
+        file_server
+    }
+}
+```

--
Gitblit v1.10.0