From b51350489f6a23716cca0f286d8c1405d208ed03 Mon Sep 17 00:00:00 2001 From: Thomas Hobson Date: Sat, 8 May 2021 12:08:13 +1200 Subject: [PATCH] Up the default max file size limit --- api/src/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/config.js b/api/src/config.js index 8cc1122..ea31300 100644 --- a/api/src/config.js +++ b/api/src/config.js @@ -100,7 +100,7 @@ const options = [ { key: 'max_file_size', desc: 'Max file size in bytes for a file', - default: 1000000, //1MB + default: 10000000, //10MB parser: parse_int, validators: [ (x,raw) => !isNaN(x) || `${raw} is not a number`,