Don't hard code max file size

This commit is contained in:
Daniel Markstedt 2021-09-22 09:46:38 -07:00
parent 5ebbe8f107
commit bae1554b1f
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ home_dir = getcwd()
DEFAULT_CONFIG = "default.json"
MAX_FILE_SIZE = getenv("MAX_FILE_SIZE", 1024 * 1024 * 1024 * 2) # 2gb
HARDDRIVE_FILE_SUFFIX = ("hda", "hdn", "hdi", "nhd", "hdf", "hds")
HARDDRIVE_FILE_SUFFIX = ("hda", "hdn", "hdi", "nhd", "hdf", "hds", "dsk")
CDROM_FILE_SUFFIX = ("iso", "cdr", "toast", "img")
REMOVABLE_FILE_SUFFIX = ("hdr",)
ARCHIVE_FILE_SUFFIX = ("zip",)

View File

@ -183,7 +183,7 @@
chunking: true,
forceChunking: true,
url: '/files/upload',
maxFilesize: 2049, // megabytes
maxFilesize: {{max_file_size}}, // MB
chunkSize: 1000000 // bytes
}
</script>