summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorDan Bartram <daneybartram@gmail.com>2014-09-27 13:27:42 +0100
committerMorris Jobke <hey@morrisjobke.de>2014-09-29 09:39:55 +0200
commitbd74ab2886a3b5173658a205ebe0647e02df5051 (patch)
tree9b83a3b64cf55e22842e7b867cea66d739651554 /config
parent5c0139fdff3a4b6adac113adf387ee273587585c (diff)
downloadnextcloud-server-bd74ab2886a3b5173658a205ebe0647e02df5051.tar.gz
nextcloud-server-bd74ab2886a3b5173658a205ebe0647e02df5051.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')
-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 987bf2c9605..193f2aea0b5 100755
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -194,8 +194,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,