From 4de44e54e75eb553106e7c1aa0ed1c11e2361b80 Mon Sep 17 00:00:00 2001 From: tomoron Date: Thu, 23 Apr 2026 18:24:57 +0200 Subject: [PATCH] put the upload storage limits back to what they're supposed to be --- src/config.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config.rs b/src/config.rs index c86f83d..078fd71 100644 --- a/src/config.rs +++ b/src/config.rs @@ -14,8 +14,8 @@ impl ServerConfig { upload_folder: "./uploads/".to_string(), db_url: std::env::var("HTTPSERVER_DATABASE_URL").expect("missing HTTPSERVER_DATABASE_URL"), - upload_storage_limit_soft: 1024 * 1024 * 1024 * 3, - upload_storage_limit_hard: 1024 * 1024 * 1024 * 5, + upload_storage_limit_soft: 1024 * 1024 * 1024 * 200, + upload_storage_limit_hard: 1024 * 1024 * 1024 * 300, } } }