mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
Upgrade config.php
This commit is contained in:
parent
400ba25516
commit
2b0157be47
1 changed files with 4 additions and 13 deletions
|
@ -1,8 +1,5 @@
|
|||
<?php
|
||||
|
||||
// Your Kanboard base URL, example: http://demo.kanboard.net/ (used by email notifications or CLI scripts)
|
||||
define('KANBOARD_URL', 'http://yuno_url/');
|
||||
|
||||
// E-mail address for the "From" header (notifications)
|
||||
define('MAIL_FROM', 'yuno_email');
|
||||
|
||||
|
@ -14,20 +11,11 @@ define('MAIL_SMTP_HOSTNAME', '');
|
|||
define('MAIL_SMTP_PORT', 25);
|
||||
define('MAIL_SMTP_USERNAME', '');
|
||||
define('MAIL_SMTP_PASSWORD', '');
|
||||
define('MAIL_SMTP_ENCRYPTION', ''); // Valid values are "null", "ssl" or "tls"
|
||||
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');
|
||||
|
||||
// Auto-refresh frequency in seconds for the public board view (60 seconds by default)
|
||||
define('BOARD_PUBLIC_CHECK_INTERVAL', 60);
|
||||
|
||||
// Board refresh frequency in seconds (the value 0 disable this feature, 10 seconds by default)
|
||||
define('BOARD_CHECK_INTERVAL', 10);
|
||||
|
||||
// Period (in second) to consider a task was modified recently (0 to disable, 2 days by default)
|
||||
define('RECENT_TASK_PERIOD', 48*60*60);
|
||||
|
||||
// Database driver: sqlite, mysql or postgres (sqlite by default)
|
||||
define('DB_DRIVER', 'mysql');
|
||||
|
||||
|
@ -109,3 +97,6 @@ define('REVERSE_PROXY_DEFAULT_ADMIN', 'yuno_admin');
|
|||
|
||||
// Default domain to use for setting the email address
|
||||
define('REVERSE_PROXY_DEFAULT_DOMAIN', 'yuno_domain');
|
||||
|
||||
// Enable or disable "Strict-Transport-Security" HTTP header
|
||||
define('ENABLE_HSTS', true);
|
||||
|
|
Loading…
Add table
Reference in a new issue