This commit is contained in:
squahtx 2022-11-11 17:28:54 +00:00
parent 9d117b7ec9
commit b49a4dd59c
4 changed files with 8 additions and 2 deletions

View file

@ -919,6 +919,9 @@ reverse proxy is using.</p>
# 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;
# Synapse responses may be chunked, which is an HTTP/1.1 feature.
proxy_http_version 1.1;
}
}
</code></pre>

View file

@ -212,6 +212,9 @@ reverse proxy is using.</p>
# 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;
# Synapse responses may be chunked, which is an HTTP/1.1 feature.
proxy_http_version 1.1;
}
}
</code></pre>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long