您的位置:首页 > 运维架构 > Nginx

nginx 和php设置上传大小及可以提交的内容限制

2017-08-24 15:34 513 查看
1. 以下代码加入 /etc/nginx/nginx.conf 文件中的 http{ ... } 块中

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 allocate
memory_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_filesize
post_max_size = 16M
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: