From 1e78d2067399100ddfcfcb4a54cbeb2aa4e2cd29 Mon Sep 17 00:00:00 2001 From: Saksham Date: Mon, 4 May 2026 09:42:58 +0200 Subject: [PATCH] fix(config): update files upload limit --- invenio.cfg | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/invenio.cfg b/invenio.cfg index ba92aa8f..86dd3b38 100644 --- a/invenio.cfg +++ b/invenio.cfg @@ -534,6 +534,10 @@ THEME_MATHJAX_CDN = ( "?config=TeX-AMS-MML_HTMLorMML" ) +FILES_REST_DEFAULT_MAX_FILE_SIZE = ( + 1 * 10**12 +) # 1TB (also controls max allowed upload size) + RDM_FILES_DEFAULT_QUOTA_SIZE = 50 * 10 ** 9 # 50GB RDM_FILES_DEFAULT_MAX_FILE_SIZE = 50 * 10 ** 9 # 50GB