1
0

Update nginx reverse-proxy docs (#9512)

Turns out nginx overwrites the Host header by default.
This commit is contained in:
Richard van der Hoff
2021-03-03 11:08:11 +00:00
committed by GitHub
parent 0279e0e086
commit a5daae2a5f
2 changed files with 3 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
Add support for `X-Forwarded-Proto` header when using a reverse proxy.
+2
View File
@@ -53,6 +53,8 @@ server {
proxy_pass http://localhost:8008;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Host $host;
# Nginx by default only allows file uploads up to 1M in size
# Increase client_max_body_size to match max_upload_size defined in homeserver.yaml
client_max_body_size 50M;