mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-04 10:29:34 +00:00
Add more reverse proxy examples provided in the chat
This commit is contained in:
parent
789a632ce8
commit
aa5bc2e950
@ -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
|
||||
```
|
||||
|
Loading…
x
Reference in New Issue
Block a user