mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-04 10:29:34 +00:00
Add info about forwarding headers when using a reverse proxy
This commit is contained in:
parent
516cb6885f
commit
64e8a31949
@ -58,6 +58,28 @@ server and web application.
|
||||
If you have examples for more http servers (e.g. apache), please let
|
||||
me know or add it to this site.
|
||||
|
||||
# Headers
|
||||
|
||||
If `base-url` is left to its default, then Docspell tries to find the
|
||||
external URL from the http request. When using a reverse proxy, you
|
||||
then need to pass some information from the original request so
|
||||
Docspell can construct the correct url. These headers are evaluated:
|
||||
|
||||
```
|
||||
X-Forwarded-Host
|
||||
X-Forwarded-Proto
|
||||
X-Forwarded-Port
|
||||
X-Forwarded-For
|
||||
```
|
||||
|
||||
Example for nginx:
|
||||
|
||||
```
|
||||
proxy_set_header X-Forwarded-Host $host;
|
||||
proxy_set_header X-Forwarded-Port 443;
|
||||
proxy_set_header X-Forwarded-Proto https;
|
||||
```
|
||||
|
||||
# Nginx
|
||||
|
||||
This defines two servers: one listens for http traffic and redirects
|
||||
@ -97,6 +119,9 @@ server {
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection $connection_upgrade;
|
||||
proxy_set_header X-Forwarded-Host $host;
|
||||
proxy_set_header X-Forwarded-Port 443;
|
||||
proxy_set_header X-Forwarded-Proto https;
|
||||
|
||||
//client_max_body_size 40M; //to allow larger uploads
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user