summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorBloody Altair <me@bloody.pw>2021-02-22 20:12:50 +0300
committerGitHub <noreply@github.com>2021-02-22 17:12:50 +0000
commita10ff74b682abb0c75401749e69396eda33ceee4 (patch)
treebfe9616b11105405d0ba02b908eb7fbdf3abe8f0 /README.md
parent94e751cd97d7cfb05086edd3aeeb23647c7f9ca1 (diff)
Fixed invalid `PHP_INI_MEMORY_LIMIT` variable name (#1415)
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 13a84f17..140c7827 100644
--- a/README.md
+++ b/README.md
@@ -185,7 +185,7 @@ To use an external OpenStack Swift object store as primary storage, set the foll
Check the [Nextcloud documentation](https://docs.nextcloud.com/server/latest/admin_manual/configuration_files/primary_storage.html#openstack-swift) for more information.
To customize other PHP limits you can simply change the following variables:
-- `PHP_INI_MEMORY_LIMIT` (default `512M`) This sets the maximum amount of memory in bytes that a script is allowed to allocate. This is meant to help prevent poorly written scripts from eating up all available memory but it can prevent normal operation if set too tight.
+- `PHP_MEMORY_LIMIT` (default `512M`) This sets the maximum amount of memory in bytes that a script is allowed to allocate. This is meant to help prevent poorly written scripts from eating up all available memory but it can prevent normal operation if set too tight.
- `PHP_UPLOAD_LIMIT` (default `512M`) This sets the upload limit (`post_max_size` and `upload_max_filesize`) for big files. Note that you may have to change other limits depending on your client, webserver or operating system. Check the [Nextcloud documentation](https://docs.nextcloud.com/server/latest/admin_manual/configuration_files/big_file_upload_configuration.html) for more information.