Переглянути джерело

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

Ryan Hovland 4 роки тому
батько
коміт
4a0dadafbe
2 змінених файлів з 4 додано та 0 видалено
  1. 1 0
      changelog.d/7251.doc
  2. 3 0
      docs/reverse_proxy.md

+ 1 - 0
changelog.d/7251.doc

@@ -0,0 +1 @@
+Modify suggested nginx reverse proxy configuration to match Synapse's default file upload size. Contributed by @ProCycleDev.

+ 3 - 0
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;
             }
         }