From 718dceb0ca48a776720f47da24ac1a7144b293d9 Mon Sep 17 00:00:00 2001 From: Dorian Date: Mon, 9 Mar 2026 20:13:14 +0000 Subject: [PATCH] fix: set client_max_body_size 0 at http level in demo nginx Location-level override wasn't sufficient. Setting at http block disables the body size limit globally for the demo. Co-Authored-By: Claude Opus 4.6 --- neode-ui/docker/nginx-demo.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/neode-ui/docker/nginx-demo.conf b/neode-ui/docker/nginx-demo.conf index 30b6b146..973fafc9 100644 --- a/neode-ui/docker/nginx-demo.conf +++ b/neode-ui/docker/nginx-demo.conf @@ -14,6 +14,9 @@ http { gzip on; gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript; + # Allow large uploads globally (filebrowser, etc.) + client_max_body_size 0; + server { listen 80 default_server; server_name _;