aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2014-09-28 23:32:47 +0200
committerMorris Jobke <hey@morrisjobke.de>2014-09-28 23:32:47 +0200
commit530b17c71ad59b7da57b9d0581114c7a8fa35d67 (patch)
treeeea3149fa37dfafcec66a46ad0f5bb07dcfcb2a2
parent84923475c076d8b30d271d2a14862a42d279af27 (diff)
parent0d76a211a947e9150c0a1b4bf8a7d5312acf32c9 (diff)
downloadnextcloud-server-530b17c71ad59b7da57b9d0581114c7a8fa35d67.tar.gz
nextcloud-server-530b17c71ad59b7da57b9d0581114c7a8fa35d67.zip
Merge pull request #11335 from danbartram/imp_logrotate_conf_example
Clear up confusion of log_rotate_size config value
-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,