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
62b67897c6
commit
67b4e877f6
1 changed files with 5 additions and 5 deletions
|
@ -7,7 +7,7 @@
|
|||
/*******************************************************************/
|
||||
|
||||
// Data folder (must be writeable by the web server user and absolute)
|
||||
define('DATA_DIR', __DATA_DIR__);
|
||||
define('DATA_DIR', '__DATA_DIR__/');
|
||||
|
||||
// Enable/Disable debug
|
||||
define('DEBUG', false);
|
||||
|
@ -16,10 +16,10 @@ define('DEBUG', false);
|
|||
define('LOG_DRIVER', 'system');
|
||||
|
||||
// Log filename if the log driver is "file"
|
||||
define('LOG_FILE', __DATA_DIR__/debug.log');
|
||||
define('LOG_FILE', '__DATA_DIR__/debug.log');
|
||||
|
||||
// Plugins directory
|
||||
define('PLUGINS_DIR', __INSTALL_DIR__/plugins);
|
||||
define('PLUGINS_DIR', '__INSTALL_DIR__/plugins');
|
||||
|
||||
// Plugins directory URL
|
||||
define('PLUGIN_API_URL', 'https://kanboard.org/plugins.json');
|
||||
|
@ -33,10 +33,10 @@ define('PLUGIN_INSTALLER', true);
|
|||
define('CACHE_DRIVER', 'memory');
|
||||
|
||||
// Cache folder to use if cache driver is "file" (must be writeable by the web server user)
|
||||
define('CACHE_DIR', __DATA_DIR__/cache);
|
||||
define('CACHE_DIR', '__DATA_DIR__/cache');
|
||||
|
||||
// Folder for uploaded files (must be writeable by the web server user)
|
||||
define('FILES_DIR', __DATA_DIR__/files);
|
||||
define('FILES_DIR', '__DATA_DIR__/files');
|
||||
|
||||
// Enable/disable email configuration from the user interface
|
||||
define('MAIL_CONFIGURATION', true);
|
||||
|
|
Loading…
Add table
Reference in a new issue