1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2024-12-29 15:11:58 +00:00

chore(docs): add caddy reverse proxy config example (#5777)

This commit is contained in:
Ferdinand Mütsch 2023-12-18 03:22:59 +01:00 committed by GitHub
parent b520955d0e
commit b68800d45c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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://<snip>:2283
}
```