mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-09-18 17:34:39 -04:00
Add setting to nginx configuration to allow larger file uploads (#7251)
This commit is contained in:
parent
f41b742161
commit
4a0dadafbe
2 changed files with 4 additions and 0 deletions
|
@ -42,6 +42,9 @@ the reverse proxy and the homeserver.
|
|||
location /_matrix {
|
||||
proxy_pass http://localhost:8008;
|
||||
proxy_set_header X-Forwarded-For $remote_addr;
|
||||
# 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 10M;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue