Replies: 1 comment 7 replies
-
See https://stackoverflow.com/a/3651195/169882, the TLDR is that Checking a brand new site install on
So Pretty sure customers have uploaded large files through the web, and this is why the 2GB is in place by default. |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
From https://docs.lagoon.sh/docker-images/php-fpm/#included-php-config
But according to PHP docs
memory_limit
should be larger thanpost_max_size
(link)post_max_size
must be larger thanupload_max_filesize
(link).So
memory_limit > post_max_size > upload_max_filesize
. Or at least they should be equal. But current defaults are different. So files more that400M
can't be uploaded.Beta Was this translation helpful? Give feedback.
All reactions