From b68800d45c2504a116f4a71068099e9cd1da43ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ferdinand=20M=C3=BCtsch?= Date: Mon, 18 Dec 2023 03:22:59 +0100 Subject: [PATCH] chore(docs): add caddy reverse proxy config example (#5777) --- docs/docs/administration/reverse-proxy.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/docs/administration/reverse-proxy.md b/docs/docs/administration/reverse-proxy.md index 53e1e0c61a..367c5115a1 100644 --- a/docs/docs/administration/reverse-proxy.md +++ b/docs/docs/administration/reverse-proxy.md @@ -28,3 +28,13 @@ server { } } ``` + +### Caddy example config + +As an alternative to nginx, you can also use [Caddy](https://caddyserver.com/) as a reverse proxy (with automatic HTTPS configuration). Below is an example config. + +``` +immich.example.org { + reverse_proxy http://:2283 +} +```