From 10974842ffca4a7558fa9c789be85f674378ed04 Mon Sep 17 00:00:00 2001 From: Joseph D'Souza Date: Tue, 10 Feb 2026 16:26:58 +0100 Subject: [PATCH] increase client payload size for nginx server --- docker/nginx/conf.d/app.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/nginx/conf.d/app.conf b/docker/nginx/conf.d/app.conf index f397fbd..3eb6c0e 100644 --- a/docker/nginx/conf.d/app.conf +++ b/docker/nginx/conf.d/app.conf @@ -1,5 +1,6 @@ server { listen 80; + client_max_body_size 10M; index index.php index.html; error_log /var/log/nginx/error.log; access_log /var/log/nginx/access.log;