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, } } }