client_max_body_size nginx ingress code example
Example 1: nginx post size
client_max_body_size 100M;
Example 2: nginx max request size
# Set max body to 100MB
client_max_body_size 100M;
# Or for unlimited:
client_max_body_size 0;
Example 3: client_max_body_size
http {
...
client_max_body_size 200M;
}