nginx sets request body size

The default value of nginx is 1M, if you need to increase it.

Add a sentence http{} in nginx.conf

client_max_body_size 100M;  

Just restart nginx

Guess you like

Origin blog.csdn.net/asd54090/article/details/132898165