Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2018-04-11 00:52:41 +0300
committerMorris Jobke <hey@morrisjobke.de>2018-04-11 01:27:51 +0300
commit058f8123e61863f27ca138370853f71f70e90233 (patch)
treef00a3ecbb059183fae01838b39c421eb039bf47c /config
parent323ee3cbdc420f1009b6eb64b2df0f878ff39a14 (diff)
Set the default log rotate size to 100 MB
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'config')
-rw-r--r--config/config.sample.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/config/config.sample.php b/config/config.sample.php
index ba5f3d68146..d1341feb0d2 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -764,9 +764,9 @@ $CONFIG = array(
* old logfile reaches your limit. If a rotated log file is already present, it
* will be overwritten.
*
- * Defaults to ``0`` (no rotation)
+ * Defaults to 100 MB
*/
-'log_rotate_size' => false,
+'log_rotate_size' => 100 * 1024 * 1024,
/**