From 5bfab454f5a2f6e55817240d9a818492772763f7 Mon Sep 17 00:00:00 2001 From: Yamila Moreno Date: Wed, 19 Feb 2025 15:39:01 +0100 Subject: [PATCH] :books: Document how to use a proxy - caddy --- docs/technical-guide/getting-started.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/technical-guide/getting-started.md b/docs/technical-guide/getting-started.md index 6a4378e7a5..1b262cb3d6 100644 --- a/docs/technical-guide/getting-started.md +++ b/docs/technical-guide/getting-started.md @@ -329,6 +329,18 @@ server { } ``` +#### Example with CADDY SERVER + +```bash +penpot.mycompany.com { + reverse_proxy :9001 + tls /path/to/fullchain.pem /path/to/privkey.pem + log { + output file /path/to/penpot.log + } +} +``` + ### Troubleshooting Knowing how to do Penpot troubleshooting can be very useful; on the one hand, it helps to create issues easier to resolve, since they include relevant information from the beginning which also makes them get solved faster; on the other hand, many times troubleshooting gives the necessary information to resolve a problem autonomously, without even creating an issue.