当我向服务器发布数据时,我使用Nginx / 1.6和laravel我得到此错误413请求实体太大.我试过很多解决方案
1- set client_max_body_size 100m; in server and location and http in Nginx.conf.
2- set upload_max_filesize = 100m in PHP.ini
3- set post_max_size = 100m in PHP.ini
最佳答案
在/etc/Nginx/Nginx.conf中的http部分中添加’client_max_body_size xxM’,其中xx是您要允许的大小(以兆字节为单位).
@H_403_22@http {
client_max_body_size 20M;
}