fix: increase total limit in multipart example

This commit is contained in:
MMitsuha 2025-02-06 07:10:00 +08:00
parent 182055bcb5
commit 328f37547a
No known key found for this signature in database
GPG Key ID: 7C90AB07A50C214B
1 changed files with 13 additions and 6 deletions

View File

@ -1,4 +1,6 @@
use actix_multipart::form::{json::Json as MpJson, tempfile::TempFile, MultipartForm}; use actix_multipart::form::{
json::Json as MpJson, tempfile::TempFile, MultipartForm, MultipartFormConfig,
};
use actix_web::{middleware::Logger, post, App, HttpServer, Responder}; use actix_web::{middleware::Logger, post, App, HttpServer, Responder};
use serde::Deserialize; use serde::Deserialize;
@ -28,9 +30,14 @@ async fn post_video(MultipartForm(form): MultipartForm<UploadForm>) -> impl Resp
async fn main() -> std::io::Result<()> { async fn main() -> std::io::Result<()> {
env_logger::init_from_env(env_logger::Env::new().default_filter_or("info")); env_logger::init_from_env(env_logger::Env::new().default_filter_or("info"));
HttpServer::new(move || App::new().service(post_video).wrap(Logger::default())) HttpServer::new(move || {
.workers(2) App::new()
.bind(("127.0.0.1", 8080))? .service(post_video)
.run() .wrap(Logger::default())
.await .app_data(MultipartFormConfig::default().total_limit(100 * 1024 * 1024))
})
.workers(2)
.bind(("127.0.0.1", 8080))?
.run()
.await
} }