summaryrefslogtreecommitdiffstats
path: root/config/config.sample.php
diff options
context:
space:
mode:
authorDan Bartram <daneybartram@gmail.com>2014-09-27 13:27:42 +0100
committerDan Bartram <daneybartram@gmail.com>2014-09-27 14:53:56 +0100
commit0d76a211a947e9150c0a1b4bf8a7d5312acf32c9 (patch)
tree395a65e9a3704a7945c1554bb5fa6206f00c3477 /config/config.sample.php
parentcea70298f276f25c7f3561c9c7622960f4b610b2 (diff)
downloadnextcloud-server-0d76a211a947e9150c0a1b4bf8a7d5312acf32c9.tar.gz
nextcloud-server-0d76a211a947e9150c0a1b4bf8a7d5312acf32c9.zip
Clear up confusion of log_rotate_size config value
Remove the second comment which could be confused with suggesting an invalid value: `// 100 MiB`. To keep the easily readable example value, it has been moved into the comment header for the config item.
Diffstat (limited to 'config/config.sample.php')
-rwxr-xr-xconfig/config.sample.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/config/config.sample.php b/config/config.sample.php
index cd02cf096d0..88a52be0335 100755
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -207,8 +207,9 @@ $CONFIG = array(
* will stay limited and older entries are available for a while longer. The
* total disk usage is twice the configured size.
* WARNING: When you use this, the log entries will eventually be lost.
+ * Example: To set this to 100 MiB, use the value: 104857600 (1024*1024*100 bytes).
*/
-'log_rotate_size' => false, // 104857600, // 100 MiB
+'log_rotate_size' => false,
/* Lifetime of the remember login cookie, default is 15 days */
"remember_login_cookie_lifetime" => 60*60*24*15,