上传4MB文件时收到错误413.我已经在public /文件夹上创建了一个.user.ini文件.允许最多10 MB的文件
所以我在我的Nginx.conf上使用了client_max_body_size,但我仍然得到413.
location / {
index index.PHP;
try_files $uri $uri/ /index.PHP?$query_string;
client_max_body_size 10M;
}
那个配置是因为我使用的是Laravel 5.
这是我的Procfile
web: vendor/bin/heroku-PHP-Nginx -C Nginx.conf public/
我做错什么了吗?
最佳答案
也许有点晚了,但为了解决这个问题,请移动你的client_max_body_size 10M;在位置部分之外.像这样:
原文链接:https://www.f2er.com/nginx/434763.htmlclient_max_body_size 10M;
location / {
index index.PHP;
try_files $uri $uri/ /index.PHP?$query_string;
}
有关heroku如何包含此文件的参考,请参阅https://github.com/heroku/heroku-buildpack-php/blob/beta/conf/nginx/heroku.conf.php#L35.