This commit is contained in:
2025-10-29 22:47:38 +01:00
parent 22f4d42c19
commit dfa2c1c0e2
+1 -1
View File
@@ -183,7 +183,7 @@ pub fn create_router(state: AppState) -> Router<()> {
.route("/api/health", get(health::health_check))
.with_state(state)
.layer(cors)
.layer(DefaultBodyLimit::max(1024 * 1024 * 512))
.layer(DefaultBodyLimit::max(128 * 1024 * 1024))
.layer(
TraceLayer::new_for_http()
.make_span_with(DefaultMakeSpan::new().level(tracing::Level::INFO))