put the upload storage limits back to what they're supposed to be
All checks were successful
build docker container automatically / build (push) Successful in 3m29s

This commit is contained in:
2026-04-23 18:24:57 +02:00
parent 026af42b56
commit 4de44e54e7

View File

@ -14,8 +14,8 @@ impl ServerConfig {
upload_folder: "./uploads/".to_string(), upload_folder: "./uploads/".to_string(),
db_url: std::env::var("HTTPSERVER_DATABASE_URL").expect("missing HTTPSERVER_DATABASE_URL"), db_url: std::env::var("HTTPSERVER_DATABASE_URL").expect("missing HTTPSERVER_DATABASE_URL"),
upload_storage_limit_soft: 1024 * 1024 * 1024 * 3, upload_storage_limit_soft: 1024 * 1024 * 1024 * 200,
upload_storage_limit_hard: 1024 * 1024 * 1024 * 5, upload_storage_limit_hard: 1024 * 1024 * 1024 * 300,
} }
} }
} }