Skip to content
Snippets Groups Projects
Unverified Commit 4a0dadaf authored by Ryan Hovland's avatar Ryan Hovland Committed by GitHub
Browse files

Add setting to nginx configuration to allow larger file uploads (#7251)

parent f41b7421
No related branches found
No related tags found
No related merge requests found
Modify suggested nginx reverse proxy configuration to match Synapse's default file upload size. Contributed by @ProCycleDev.
...@@ -42,6 +42,9 @@ the reverse proxy and the homeserver. ...@@ -42,6 +42,9 @@ the reverse proxy and the homeserver.
location /_matrix { location /_matrix {
proxy_pass http://localhost:8008; proxy_pass http://localhost:8008;
proxy_set_header X-Forwarded-For $remote_addr; 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;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment