diff options
author | Matthew Fennell <matthew@fennell.dev> | 2025-07-19 22:36:04 +0100 |
---|---|---|
committer | Matthew Fennell <matthew@fennell.dev> | 2025-07-19 22:36:04 +0100 |
commit | 086ca5643f1d9dc95e373c2d576c44c73adc2c77 (patch) | |
tree | bb69d99747d1c6e0ed72870019fec7dbce6cbdea | |
parent | 02e7fe43d82a4f31f39c9bdd56e85fa1fe84428e (diff) |
Bump per-upload limit to 300 MiB
There's no need to jump back to 2 GiB yet, but I was finding 10 MiB too
restrictive.
-rw-r--r-- | files/virtual_host.cfg.lua.j2 | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/files/virtual_host.cfg.lua.j2 b/files/virtual_host.cfg.lua.j2 index 3816998..06da831 100644 --- a/files/virtual_host.cfg.lua.j2 +++ b/files/virtual_host.cfg.lua.j2 @@ -34,6 +34,7 @@ http_external_url = "https://{{ virtual_host }}/" site_name = "{{ virtual_host }}" Component "upload.{{ virtual_host }}" "http_file_share" +http_file_share_size_limit = 300 * 1024 * 1024 http_file_share_global_quota = 5 * 1024 * 1024 * 1024 Component "conference.{{ virtual_host }}" "muc" |