Increase max body size for the nginx proxy
Otherwise, we can't support large media file uploads.
This commit is contained in:
parent
887d14884e
commit
1cd227b699
@ -33,5 +33,11 @@ server {
|
||||
location /_matrix {
|
||||
proxy_pass http://synapse:8008;
|
||||
proxy_set_header X-Forwarded-For $remote_addr;
|
||||
|
||||
# These are intentionally large.
|
||||
# Note that Synapse enforces its own limits, which are smaller.
|
||||
client_body_buffer_size 25M;
|
||||
client_max_body_size 100M;
|
||||
proxy_max_temp_file_size 0;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user