nignx修改最大上传文件大小限制
none
location / {
root html;
index index.html index.htm;
client_max_body_size 1000m;
}
“client_max_body_size”设置一下上传的最大上限,然后重启nginx即可。
none
location / {
root html;
index index.html index.htm;
client_max_body_size 1000m;
}
“client_max_body_size”设置一下上传的最大上限,然后重启nginx即可。