解决办法
在nginx配置文件(nginx.conf)的 http 或 server 配置块中添加 client_max_body_size 指令;
eg:
1 2 3 |
http { client_max_body_size 32m; } |
在nginx配置文件(nginx.conf)的 http 或 server 配置块中添加 client_max_body_size 指令;
eg:
1 2 3 |
http { client_max_body_size 32m; } |