mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
Update config.php
This commit is contained in:
parent
808c098171
commit
a943581caf
1 changed files with 15 additions and 0 deletions
|
@ -3,6 +3,12 @@
|
|||
// Enable/Disable debug
|
||||
define('DEBUG', false);
|
||||
|
||||
// Debug file path
|
||||
define('DEBUG_FILE', __DIR__.'/data/debug.log');
|
||||
|
||||
// Folder for uploaded files, don't forget the trailing slash
|
||||
define('FILES_DIR', 'data/files/');
|
||||
|
||||
// E-mail address for the "From" header (notifications)
|
||||
define('MAIL_FROM', 'yuno_email');
|
||||
|
||||
|
@ -74,6 +80,15 @@ define('LDAP_ACCOUNT_FULLNAME', 'displayname');
|
|||
// Name of an attribute of the user account object which should be used as the email of the user.
|
||||
define('LDAP_ACCOUNT_EMAIL', 'mail');
|
||||
|
||||
// Name of an attribute of the user account object which should be used as the id of the user.
|
||||
// Example for ActiveDirectory: 'samaccountname'
|
||||
// Example for OpenLDAP: 'uid'
|
||||
define('LDAP_ACCOUNT_ID', 'samaccountname');
|
||||
|
||||
// By default Kanboard lowercase the ldap username to avoid duplicate users (the database is case sensitive)
|
||||
// Set to true if you want to preserve the case
|
||||
define('LDAP_USERNAME_CASE_SENSITIVE', false);
|
||||
|
||||
// Enable/disable Google authentication
|
||||
define('GOOGLE_AUTH', false);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue