change nginx max post size 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;
client_max_body_size 100M;
# Set max body to 100MB
client_max_body_size 100M;
# Or for unlimited:
client_max_body_size 0;