PHP+Nginx部署配置常见问题

第一、上传超大文件

涉及到最大上传文件大小,和最大post大小的设置

首先,php.ini中需要设置

 upload_max_filesize = 512M
post_max_size = 512M

其次,nginx的配置中也需要添加

client_max_body_size 500m;

You May Also Like

About the Author: daidai5771

发表评论

电子邮件地址不会被公开。 必填项已用*标注