summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorJ0WI <J0WI@users.noreply.github.com>2021-02-19 13:57:58 +0000
committerGitHub <noreply@github.com>2021-02-19 13:57:58 +0000
commit061d860c0e711c3b4e9e08b2e67b34a4c33a1156 (patch)
treeb87d243f3eb16b5de11f8cd748f14cdbda92bbad /README.md
parentb6925e9b4590fe25e238bd48a7461a5839055f5d (diff)
Implement essential php.ini configuration via ENV (#1379)
Signed-off-by: J0WI <J0WI@users.noreply.github.com> Co-Authored-By: Alexander Sosna <alexander.sosna@credativ.de> Co-Authored-By: =?UTF-8?q?Alexander=20Gr=C3=BC=C3=9Fung?= <alexander@gruessung-online.de> Co-authored-by: Alexander Sosna <alexander.sosna@credativ.de> Co-authored-by: =?UTF-8?q?Alexander=20Gr=C3=BC=C3=9Fung?= <alexander@gruessung-online.de>
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/README.md b/README.md
index 76d91af4..a346e23f 100644
--- a/README.md
+++ b/README.md
@@ -182,6 +182,10 @@ 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_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.
+
## Using the apache image behind a reverse proxy and auto configure server host and protocol