mirror of https://github.com/fafhrd91/actix-web
fix: increase total limit in multipart example
This commit is contained in:
parent
182055bcb5
commit
328f37547a
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue