Heroku Nginx HTTP 413实体太大了

前端之家收集整理的这篇文章主要介绍了Heroku Nginx HTTP 413实体太大了前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

上传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;在位置部分之外.像这样:

client_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.

原文链接:https://www.f2er.com/nginx/434763.html

猜你在找的Nginx相关文章