From dc6aebe1d01525208fc96e3f7a60ecbf4d576e16 Mon Sep 17 00:00:00 2001 From: Richard Steinmetz Date: Thu, 10 Oct 2024 11:13:37 +0200 Subject: [PATCH] chore(readme): add exemplary configuration for Caddy v2 Signed-off-by: Richard Steinmetz --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 36e462f..40735d8 100644 --- a/README.md +++ b/README.md @@ -105,6 +105,14 @@ location /whiteboard/ { } ``` +#### Caddy v2 + +``` +handle_path /whiteboard/* { + reverse_proxy http://127.0.0.1:3002 +} +``` + ## Storage Strategies and Scaling The whiteboard application supports two storage strategies: LRU (Least Recently Used) cache and Redis. Each strategy has its own characteristics and is suitable for different deployment scenarios.