summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2017-10-19 10:50:36 -0700
committerFrederic Guillot <fred@kanboard.net>2017-10-19 10:50:36 -0700
commitd3b8fbfa2864e55b7e5916e55ca818599e7e94d6 (patch)
treed4c5e7f12c65a0e834065287f8e3cbcf59ec41b1 /doc
parente7f795a63e49a11a9cea239d89d6172e8c40227d (diff)
Make configurable to number of events stored in project activities
Diffstat (limited to 'doc')
-rw-r--r--doc/en_US/config.markdown6
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/en_US/config.markdown b/doc/en_US/config.markdown
index 4ccaec27..4fbb9548 100644
--- a/doc/en_US/config.markdown
+++ b/doc/en_US/config.markdown
@@ -10,6 +10,9 @@ Enable/Disable debug mode
```php
define('DEBUG', true);
define('LOG_DRIVER', 'file'); // Other drivers are: syslog, stdout, stderr or file
+
+// By default, the log file is in data/debug.log but you can change the path:
+define('LOG_FILE', '/path/to/debug.log');
```
The log driver must be defined if you enable the debug mode.
@@ -332,4 +335,7 @@ define('API_AUTHENTICATION_TOKEN', 'My unique API Token');
// TOTP (2FA) issuer name
define('TOTP_ISSUER', 'Kanboard');
+
+// Maximum number of events stored in the table "project_activities"
+define('PROJECT_ACTIVITIES_MAX_EVENTS', 10000);
```