summaryrefslogtreecommitdiff
path: root/doc/en_US/config.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'doc/en_US/config.markdown')
-rw-r--r--doc/en_US/config.markdown7
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/en_US/config.markdown b/doc/en_US/config.markdown
index f5f57b6f..103c859b 100644
--- a/doc/en_US/config.markdown
+++ b/doc/en_US/config.markdown
@@ -1,4 +1,4 @@
-Config file
+Config File
===========
You can customize the default settings of Kanboard by adding a file `config.php` at the project root or in the `data` folder.
@@ -273,7 +273,7 @@ define('LOG_FILE', __DIR__.DIRECTORY_SEPARATOR.'data'.DIRECTORY_SEPARATOR.'debug
```
Brute-force protection
----------------------
+----------------------
```php
// Enable captcha after 3 authentication failure
@@ -338,4 +338,7 @@ define('TOTP_ISSUER', 'Kanboard');
// Maximum number of events stored in the table "project_activities"
define('PROJECT_ACTIVITIES_MAX_EVENTS', 10000);
+
+// Comma separated list of fields to not synchronize when using external authentication providers
+define('EXTERNAL_AUTH_EXCLUDE_FIELDS', 'username');
```