bump body limit lol

This commit is contained in:
Luna 2024-08-04 18:36:49 -03:00
parent 22f79bbdf1
commit ee275f0fa5

View file

@ -44,7 +44,7 @@ async fn main() {
// build our application with a single route
let app = Router::new()
.route("/", post(upload_file))
.layer(axum::extract::DefaultBodyLimit::max(5 * 1024 * 1024 * 1024));
.layer(axum::extract::DefaultBodyLimit::max(8 * 1024 * 1024 * 1024));
let upstream_runner = get_upstream_runner();