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