From 8ceb9f0325db399ea650b0f5bc04f649564d96e9 Mon Sep 17 00:00:00 2001 From: Axel Date: Wed, 17 May 2023 16:40:39 +0200 Subject: [PATCH] Fixing readme --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 4dea243..a4b59e9 100644 --- a/readme.md +++ b/readme.md @@ -91,7 +91,7 @@ In order to configure your application, copy the .env.example file into .env. Th | `APP_TIMEZONE` | change this to your current timezone | | `APP_LOCALE` | change this to "fr" or "en" | | `UPLOAD_PREVENT_DUPLICATES` | Should the app block duplicate files (true / false) | -| `HASH_MAX_FILESIZE`| max filesize for hashing file to check for duplicate files. If files are higher, they will not be hashed. Find the best value to better time / memory consumption | +| `HASH_MAX_FILESIZE`| max size for hashing file to check for duplicate files. If files are bigger than limit, they will not be hashed. Find the best value for better cpu / memory consumption | | `UPLOAD_MAX_FILES` | (*optional*) maximal number of files per bundle | | `UPLOAD_MAX_FILESIZE` | (*optional*) change this to the value you want (K, M, G, T, ...). Attention : you must configure your PHP settings too (`post_max_size`, `upload_max_filesize` and `memory_limit`). When missing, using PHP lowest configuration | | `UPLOAD_LIMIT_IPS` | (*optional*) a comma separated list of IPs from which you may upload files. Different formats are supported : Full IP address (192.168.10.2), Wildcard format (192.168.10.*), CIDR Format (192.168.10/24 or 1.2.3.4/255.255.255.0) or Start-end IP (192.168.10.0-192.168.10.10). When missing, filtering is disabled. |