Add more reverse proxy examples provided in the chat

This commit is contained in:
eikek 2022-04-29 21:11:25 +02:00
parent 789a632ce8
commit aa5bc2e950

View File

@ -102,3 +102,33 @@ server {
}
}
```
# Caddy
```
docspell.example.com {
reverse_proxy http://192.168.1.11:7880
}
```
# Traefik 2
```yaml
http:
routers:
docspell:
rule: "Host(`docspell.example.com`)"
service: docspell
entryPoints:
- web-secure # or whatever you named it for SSL
services:
docspell:
loadBalancer:
servers:
- url: http://192.168.1.11:7880 # the ip of the container, localhost if you use docker port mapping
healthCheck:
path: /api/info/version
```