Merge pull request #46 from Greylinux/patch-2

Update reverse_proxy.md
This commit is contained in:
Matthew Wild 2021-07-19 13:49:25 +01:00 committed by GitHub
commit 274efd9a32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -66,7 +66,7 @@ server {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
# A bit of headroom over the 16MB accepted by Prosody.
client_max_body_size 20MB;
client_max_body_size 20M;
}
}
@ -91,7 +91,7 @@ server {
proxy_ssl_server_name on;
# A bit of headroom over the 16MB accepted by Prosody.
client_max_body_size 20MB;
client_max_body_size 20M;
}
}
```