码迷,mamicode.com
首页 > Web开发 > 详细

[PHP]Nginx与PHP的文件上传大小限制

时间:2014-09-09 11:42:58      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:os   io   使用   ar   文件   数据   art   sp   on   

-----------------------------------------------------------------------@黑眼诗人 www.chenwei.ws

1. 修改PHP配置文件中的三项:vim /usr/local/php/etc/php.ini

  (1)post_max_size = 50M      #PHP可接受的最大POST数据

  (2)upload_max_filesize = 50M   #文件上传允许的最大值

  (3)max_execution_time = 300   #每个脚本的最大执行时间,秒钟(0则不限制,不建议设0)

 

2. 修改Nginx配置文件:vim /usr/local/nginx/conf/nginx.conf (如果忘了配置文件的具体位置,可以使用 locate nginx.conf 查找)

  (1)client_max_body_size 50m   #客户端最大上传大小 50M

 

3. 重启PHP:/etc/init.d/php-fpm restart

 

4. 平滑重启Nginx:/usr/local/nginx/sbin/nginx -s reload

----------------------------------------------------------------------------------------------------

[PHP]Nginx与PHP的文件上传大小限制

标签:os   io   使用   ar   文件   数据   art   sp   on   

原文地址:http://www.cnblogs.com/farwish/p/3961819.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!