From 91881ef73e98f595381b44a1b47a7cc34e4d2809 Mon Sep 17 00:00:00 2001 From: Fisher <72705185+fisherjacobc@users.noreply.github.com> Date: Thu, 30 May 2024 08:41:42 -0400 Subject: [PATCH] fix(example): add missing `uploadLimit` key w/ desc --- example/micro.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/example/micro.yaml b/example/micro.yaml index 2059f48..4597678 100644 --- a/example/micro.yaml +++ b/example/micro.yaml @@ -24,6 +24,9 @@ storagePath: /data # then replace "one" with "two" and it would look like user "two" uploaded it. restrictFilesToHost: true +# maximum file size for each upload (e.g. 123MB, 456GB, etc...) +uploadLimit: 1GB + # # purging can be used to clean up old files, useful if you want to allow large files to be uploaded # # but dont want to store them forever. this is commented by default to prevent accidental purging # # uncomment the section below to enable it. @@ -105,4 +108,4 @@ conversions: # filter: # decayDuration: 7d # how long before files are moved to external storage # minSize: 1MB # files under this size will not be moved -# maxSize: 1GB # files over this size will be moved \ No newline at end of file +# maxSize: 1GB # files over this size will be moved