client_max_body_size 指令在 Dokku Wordpress 应用程序上不起作用(?)

client_max_body_size directive is not working (?) on Dokku Wordpress app

问题: 我在 Dokku v0.23.0 上创建了一个 Wordpress 应用程序(在 DO Ubuntu 18 vps 上),我无法上传任何大于 2MB 的文件。

步骤已经检查

upload_max_filesize = 900M
post_max_size = 900M
max_execution_time = 600
memory_limit = 512M

我没有看到我在这里遗漏了什么...

感谢您提供的任何帮助!

如果您使用 php buildpack,您还需要配置 buildpacks nginx(或 apache)conf 来处理更大的文件。有关详细信息,请参阅 documentation on the php buildpack

对于nginx,可能是这样的:

client_max_body_size 10M;

location / {
    index index.php;
    try_files $uri $uri/ /index.php?$query_string;
}