1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/kanboard_ynh.git synced 2024-09-03 19:36:17 +02:00
kanboard_ynh/conf/config.php

186 lines
5.7 KiB
PHP
Raw Normal View History

<?php
2015-01-16 14:23:32 +01:00
// Enable/Disable debug
define('DEBUG', false);
2015-02-25 17:29:23 +01:00
// Debug file path
2015-11-27 21:11:56 +01:00
define('DEBUG_FILE', __DIR__.DIRECTORY_SEPARATOR.'data'.DIRECTORY_SEPARATOR.'debug.log');
2015-02-25 17:29:23 +01:00
2015-10-14 15:56:23 +02:00
// Plugins directory
2015-11-27 21:11:56 +01:00
define('PLUGINS_DIR', 'plugins');
2015-10-14 15:56:23 +02:00
2015-11-27 21:11:56 +01:00
// Folder for uploaded files
define('FILES_DIR', 'data'.DIRECTORY_SEPARATOR.'files');
2015-02-25 17:29:23 +01:00
// E-mail address for the "From" header (notifications)
define('MAIL_FROM', 'yuno_email');
2015-08-16 17:04:56 +02:00
// Mail transport available: "smtp", "sendmail", "mail" (PHP mail function), "postmark", "mailgun", "sendgrid"
define('MAIL_TRANSPORT', 'mail');
// SMTP configuration to use when the "smtp" transport is chosen
define('MAIL_SMTP_HOSTNAME', '');
define('MAIL_SMTP_PORT', 25);
define('MAIL_SMTP_USERNAME', '');
define('MAIL_SMTP_PASSWORD', '');
2014-11-23 20:14:17 +01:00
define('MAIL_SMTP_ENCRYPTION', null); // Valid values are "null", "ssl" or "tls"
// Sendmail command to use when the transport is "sendmail"
define('MAIL_SENDMAIL_COMMAND', '/usr/sbin/sendmail -bs');
// Database driver: sqlite, mysql or postgres (sqlite by default)
define('DB_DRIVER', 'mysql');
// Mysql/Postgres username
define('DB_USERNAME', 'yuno_dbuser');
// Mysql/Postgres password
define('DB_PASSWORD', 'yuno_dbpdw');
// Mysql/Postgres hostname
define('DB_HOSTNAME', 'localhost');
// Mysql/Postgres database name
define('DB_NAME', 'yuno_dbuser');
2015-04-21 17:56:32 +02:00
// Mysql/Postgres custom port (null = default port)
define('DB_PORT', null);
// Enable LDAP authentication (false by default)
define('LDAP_AUTH', false);
// LDAP server hostname
2016-01-24 18:30:47 +01:00
define('LDAP_SERVER', 'localhost');
// LDAP server port (389 by default)
define('LDAP_PORT', 389);
2015-10-14 15:56:23 +02:00
// By default, require certificate to be verified for ldaps:// style URL. Set to false to skip the verification
define('LDAP_SSL_VERIFY', true);
2014-12-22 19:21:10 +01:00
// Enable LDAP START_TLS
define('LDAP_START_TLS', false);
2015-12-29 01:27:58 +01:00
// 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);
2015-10-14 15:56:23 +02:00
// LDAP bind type: "anonymous", "user" or "proxy"
define('LDAP_BIND_TYPE', 'anonymous');
2015-10-14 15:56:23 +02:00
// LDAP username to use with proxy mode
// LDAP username pattern to use with user mode
define('LDAP_USERNAME', null);
2015-10-14 15:56:23 +02:00
// LDAP password to use for proxy mode
define('LDAP_PASSWORD', null);
2015-12-29 01:27:58 +01:00
// LDAP DN for users
// Example for ActiveDirectory: CN=Users,DC=kanboard,DC=local
// Example for OpenLDAP: ou=People,dc=example,dc=com
2016-01-24 18:30:47 +01:00
define('LDAP_USER_BASE_DN', 'ou=users,dc=yunohost,dc=org');
2015-12-29 01:27:58 +01:00
// LDAP pattern to use when searching for a user account
// Example for ActiveDirectory: '(&(objectClass=user)(sAMAccountName=%s))'
// Example for OpenLDAP: 'uid=%s'
2016-01-24 18:30:47 +01:00
define('LDAP_USER_FILTER', 'uid=%s');
2015-12-29 01:27:58 +01:00
// LDAP attribute for username
2015-02-25 17:29:23 +01:00
// Example for ActiveDirectory: 'samaccountname'
// Example for OpenLDAP: 'uid'
2015-12-29 01:27:58 +01:00
define('LDAP_USER_ATTRIBUTE_USERNAME', 'uid');
// LDAP attribute for user full name
// Example for ActiveDirectory: 'displayname'
// Example for OpenLDAP: 'cn'
2016-01-24 18:30:47 +01:00
define('LDAP_USER_ATTRIBUTE_FULLNAME', 'displayname');
2015-12-29 01:27:58 +01:00
// LDAP attribute for user email
define('LDAP_USER_ATTRIBUTE_EMAIL', 'mail');
2015-10-14 15:56:23 +02:00
2015-12-29 01:27:58 +01:00
// LDAP attribute to find groups in user profile
define('LDAP_USER_ATTRIBUTE_GROUPS', 'memberof');
2015-10-14 15:56:23 +02:00
2015-12-29 01:27:58 +01:00
// Allow automatic LDAP user creation
define('LDAP_USER_CREATION', true);
// LDAP DN for administrators
// Example: CN=Kanboard-Admins,CN=Users,DC=kanboard,DC=local
2015-10-14 15:56:23 +02:00
define('LDAP_GROUP_ADMIN_DN', '');
2015-12-29 01:27:58 +01:00
// LDAP DN for managers
// Example: CN=Kanboard Managers,CN=Users,DC=kanboard,DC=local
define('LDAP_GROUP_MANAGER_DN', '');
2015-02-25 17:29:23 +01:00
2015-12-29 01:27:58 +01:00
// Enable LDAP group provider for project permissions
// The end-user will be able to browse LDAP groups from the user interface and allow access to specified projects
define('LDAP_GROUP_PROVIDER', false);
// LDAP Base DN for groups
define('LDAP_GROUP_BASE_DN', '');
// LDAP group filter
// Example for ActiveDirectory: (&(objectClass=group)(sAMAccountName=%s*))
define('LDAP_GROUP_FILTER', '');
2015-02-25 17:29:23 +01:00
2015-12-29 01:27:58 +01:00
// LDAP attribute for the group name
define('LDAP_GROUP_ATTRIBUTE_NAME', 'cn');
2015-08-16 17:04:56 +02:00
// Enable/disable the reverse proxy authentication
2016-01-24 18:30:47 +01:00
define('REVERSE_PROXY_AUTH', false);
// Header name to use for the username
define('REVERSE_PROXY_USER_HEADER', 'REMOTE_USER');
// Username of the admin, by default blank
define('REVERSE_PROXY_DEFAULT_ADMIN', 'yuno_admin');
// Default domain to use for setting the email address
define('REVERSE_PROXY_DEFAULT_DOMAIN', 'yuno_domain');
2014-11-23 20:14:17 +01:00
2015-09-08 22:16:28 +02:00
// Enable/disable remember me authentication
2015-10-14 15:44:44 +02:00
define('REMEMBER_ME_AUTH', false);
2015-09-08 22:16:28 +02:00
2014-11-23 20:14:17 +01:00
// Enable or disable "Strict-Transport-Security" HTTP header
define('ENABLE_HSTS', false);
2015-04-21 17:56:32 +02:00
// Enable or disable "X-Frame-Options: DENY" HTTP header
define('ENABLE_XFRAME', true);
2015-10-14 15:56:23 +02:00
// Enable syslog logging
define('ENABLE_SYSLOG', true);
2015-04-21 17:56:32 +02:00
// Escape html inside markdown text
define('MARKDOWN_ESCAPE_HTML', true);
2015-08-16 17:04:56 +02:00
// API alternative authentication header, the default is HTTP Basic Authentication defined in RFC2617
define('API_AUTHENTICATION_HEADER', '');
// Enable/disable url rewrite
define('ENABLE_URL_REWRITE', false);
// Hide login form, useful if all your users use Google/Github/ReverseProxy authentication
define('HIDE_LOGIN_FORM', true);
2015-09-08 22:16:28 +02:00
2016-03-08 00:09:23 +01:00
// Disabling logout (for external SSO authentication)
define('DISABLE_LOGOUT', true);
2015-09-08 22:16:28 +02:00
// Enable captcha after 3 authentication failure
define('BRUTEFORCE_CAPTCHA', 3);
// Lock the account after 6 authentication failure
define('BRUTEFORCE_LOCKDOWN', 6);
// Lock account duration in minute
define('BRUTEFORCE_LOCKDOWN_DURATION', 15);
// Session duration in second (0 = until the browser is closed)
// See http://php.net/manual/en/session.configuration.php#ini.session.cookie-lifetime
2015-10-26 14:49:22 +01:00
define('SESSION_DURATION', 0);
2015-10-14 15:56:23 +02:00
// HTTP client proxy
define('HTTP_PROXY_HOSTNAME', '');
define('HTTP_PROXY_PORT', '3128');
define('HTTP_PROXY_USERNAME', '');
define('HTTP_PROXY_PASSWORD', '');