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 <noreply@anthropic.com>
This commit is contained in:
parent
a6c1820a83
commit
718dceb0ca
@ -14,6 +14,9 @@ http {
|
|||||||
gzip on;
|
gzip on;
|
||||||
gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
|
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 {
|
server {
|
||||||
listen 80 default_server;
|
listen 80 default_server;
|
||||||
server_name _;
|
server_name _;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user