1. 修改PHP配置文件中的三个选项:
vim /usr/local/php/etc/php.ini
post_max_size = 50M #PHP可接受的最大POST数据
upload_max_filesize = 50M #文件上传允许的最大值
max_execution_time = 300 #每个脚本的最大执行时间,单位秒(0表示不限制,不建议设0)
2. 修改Nginx配置文件:
vim /usr/local/nginx/conf/nginx.conf
(如果忘了配置文件的具体位置,可以使用 locate nginx.conf 查找)
client_max_body_size 50m #客户端最大上传大小 50M
3. 平滑重启Nginx:
sudo service nginx restart