欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

nginx 413:nginx,php不能上传大图问题(413)

程序员文章站 2022-05-31 21:37:35
...
上传图片 出现错误:413 Request Entity Too Large
修改nginx.conf 在http{
client_max_body_size 10M; #添加 改大点
}
修改php.ini 中
upload_max_filesize = 10M
post_max_size = 10M
重启nginx,php-fpm 本文链接http://www.cxybl.com/html/wlbc/Php/20120627/31128.html