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 +} +```