-
Notifications
You must be signed in to change notification settings - Fork 170
nginx client_body_buffer_size #350
Copy link
Copy link
Open
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is neededkeepaliveKeeps Issue's from beeing closedKeeps Issue's from beeing closed
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is neededkeepaliveKeeps Issue's from beeing closedKeeps Issue's from beeing closed
Since you expose
nginx.config.client_max_body_sizeas a top level config it is probably best to also expose theclient_body_buffer_sizeso folks can control what ends up being disk buffered and what doesn't. In addition to the performance benefit, setting that value high enough will also help prevent things like falco from endlessly complaining about unauthorized disk accesses.In our environment I add the directive to:
.nginx.config.httpSnippet. That works fine, but at first I had this as a top level config setting since I saw the other one in there.