chore: increase max upload file size constant from 50MB to 300MB in rupload app config
This commit is contained in:
parent
c551e69bb6
commit
ecf2aa0527
@ -2,7 +2,7 @@ import pathlib
|
||||
|
||||
from aiohttp import web
|
||||
|
||||
MAX_FILE_SIZE = 1024 * 1024 * 50 # 50Mb
|
||||
MAX_FILE_SIZE = 1024 * 1024 * 300 # 50Mb
|
||||
UPLOAD_FOLDER_QUOTA = 10 * 1024 * 1024 * 1024 # 10Gb
|
||||
UPLOAD_URL = "/"
|
||||
UPLOAD_PATH = "uploads"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user