nginx 1.4.6 设置上传大小 client_max_body_size

来源:互联网 发布:医学数据可视化ppt 编辑:程序博客网 时间:2024/05/18 02:25
1. 以下代码加入 /etc/nginx/nginx.conf 文件中的 http{ ... } 块中
[plain] view plain copy
  1. # set client body size to 8M #  
  2. client_max_body_size 8M;  


2. PHP 设置上传大小 

打开 /etc/php5/fpm/php.ini 文件中 修改以下几个参数

;This sets the maximum amount of memory in bytes that a script is allowed to allocatememory_limit = 32M ;The maximum size of an uploaded file.upload_max_filesize = 8M ;Sets max size of post data allowed. This setting also affects file upload. To upload large files, this value must be larger than upload_max_filesizepost_max_size = 16M

阅读全文
0 0