diff options
author | Matthew Fennell <matthew@fennell.dev> | 2024-07-27 10:22:27 +0100 |
---|---|---|
committer | Matthew Fennell <matthew@fennell.dev> | 2024-07-27 10:22:27 +0100 |
commit | 2743b23bf59341043bc87eb40f0435183158e019 (patch) | |
tree | e0643dccf6b76854cd264632507cd38e6312cb53 | |
parent | 5d6b122eb8165bb8815b232b2763dcf01cf94be1 (diff) |
Increase file upload limit
This is so that I can test sending a relatively large APK in order to debug an
issue in Dino.
-rw-r--r-- | files/virtual_host.cfg.lua.j2 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/files/virtual_host.cfg.lua.j2 b/files/virtual_host.cfg.lua.j2 index 42ca5bb..c291dc7 100644 --- a/files/virtual_host.cfg.lua.j2 +++ b/files/virtual_host.cfg.lua.j2 @@ -31,6 +31,8 @@ site_name = "{{ virtual_host }}" Component "upload.{{ virtual_host }}" "http_file_share" +http_file_share_size_limit = 20 * 1024 * 1024 + Component "conference.{{ virtual_host }}" "muc" modules_enabled = { "muc_mam"; |