summary refs log tree commit diff
path: root/docs/reverse_proxy.md
diff options
context:
space:
mode:
authorRyan Hovland <18075290+ProCycleDev@users.noreply.github.com>2020-04-13 09:23:36 -0700
committerGitHub <noreply@github.com>2020-04-13 17:23:36 +0100
commit4a0dadafbebdd4ff97627a4737f74096b92ff950 (patch)
tree8f303ad1cd97a2ba952e9f2bdd1c426734f1d07b /docs/reverse_proxy.md
parentCheck on room creation if the user is allowed to publish the room to the room... (diff)
downloadsynapse-4a0dadafbebdd4ff97627a4737f74096b92ff950.tar.xz
Add setting to nginx configuration to allow larger file uploads (#7251)
Diffstat (limited to 'docs/reverse_proxy.md')
-rw-r--r--docs/reverse_proxy.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/reverse_proxy.md b/docs/reverse_proxy.md
index af6d73927a..c7222f73b9 100644
--- a/docs/reverse_proxy.md
+++ b/docs/reverse_proxy.md
@@ -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;
             }
         }