chore: increase max upload file size constant from 50MB to 300MB in rupload app config

This commit is contained in:
retoor 2024-12-13 19:22:48 +00:00
parent c551e69bb6
commit ecf2aa0527

View File

@ -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"