Update nginx reverse-proxy docs (#9512)

Turns out nginx overwrites the Host header by default.
code_spécifique_watcha
Richard van der Hoff 4 years ago committed by GitHub
parent 0279e0e086
commit a5daae2a5f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      changelog.d/9512.feature
  2. 2
      docs/reverse_proxy.md

@ -0,0 +1 @@
Add support for `X-Forwarded-Proto` header when using a reverse proxy.

@ -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;

Loading…
Cancel
Save