search for: client_body_buffer_size

Displaying 2 results from an estimated 2 matches for "client_body_buffer_size".

2025 Apr 08
0
njs-0.8.10
...                                   08 Apr 2025     nginx modules:     *) Feature: reading r.requestText or r.requestBuffer from        a temp file.        Previously, an exception was thrown when accessing r.requestText        or r.requestBuffer if a client request body size exceeded        client_body_buffer_size.     *) Improvement: improved reporting of unhandled promise rejections.     *) Bugfix: fixed name corruption in variable and header processing.     *) Bugfix: fixed SharedDict.incr() with empty init argument        for QuickJS engine.     *) Bugfix: accepting response headers with undersc...
2013 Sep 23
0
400 bad request
...nd then rails coudnt resolve it ? I don''t know if problem come from rails or from nginx. For first url, I solved it in nginx conf here part of my conf access_log /var/log/nginx/gancx.access.log; error_log /var/log/nginx/gancx.error.log; client_body_in_file_only clean; client_body_buffer_size 32K; charset UTF-8; source_charset UTF-8; client_max_body_size 300M; error_page 400 404 = @notfound; error_page 500 502 504 = @server_error; error_page 503 = @maintenance; location @notfound { rewrite ^(.*)$ $scheme://$host permanent; }...