matrix: increase file size limit

This commit is contained in:
Markus 2020-06-20 00:20:48 +02:00
parent fe10cde96b
commit 40e8445679
2 changed files with 3 additions and 3 deletions

View File

@ -811,7 +811,7 @@ media_store_path: "/var/lib/matrix-synapse/media"
# The largest allowed upload size in bytes
#
max_upload_size: 10M
max_upload_size: 25M
# Maximum number of pixels that will be thumbnailed
#

View File

@ -23,7 +23,7 @@ server {
ssl_certificate_key /etc/nginx/ssl/{{ matrix_domain }}.key;
ssl_certificate /etc/nginx/ssl/{{ matrix_domain }}.crt;
client_max_body_size 10M;
client_max_body_size 25M;
location / {
proxy_pass http://localhost:8008;
@ -40,7 +40,7 @@ server {
ssl_certificate_key /etc/nginx/ssl/{{ matrix_domain }}.key;
ssl_certificate /etc/nginx/ssl/{{ matrix_domain }}.crt;
client_max_body_size 5M;
client_max_body_size 25M;
location / {
proxy_pass http://localhost:8008;