From 9fb80b62b7a06426bed13cfdec1910a759ab248c Mon Sep 17 00:00:00 2001 From: retoor Date: Fri, 13 Dec 2024 20:22:48 +0100 Subject: [PATCH] Updated upload limit to 300Mb. --- src/rupload/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rupload/app.py b/src/rupload/app.py index 6685757..b931aad 100644 --- a/src/rupload/app.py +++ b/src/rupload/app.py @@ -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"