1、文件:config/upload.php,目前默認(rèn):2mb
2、文件:config/swoole.php,目前默認(rèn):50mb
3、php上傳配置,php.ini文件
注意??:設(shè)置完需要重啟php
4、nginx上傳文件設(shè)置
Nginx的默認(rèn)缺省配置最大上傳文件大小是1M。
如果要修改這個大小限制,只需要打開nginx.conf文件。
在http內(nèi)加入
client_max_body_size 10m
如下所示
http {
--#數(shù)字?jǐn)?shù)限制大小
client_max_body_size 10m;
--#數(shù)字?jǐn)?shù)限制大小
}
service restart nginx