diff options
| author | Frederic Guillot <fred@kanboard.net> | 2015-01-25 10:47:21 -0500 |
|---|---|---|
| committer | Frederic Guillot <fred@kanboard.net> | 2015-01-25 10:47:21 -0500 |
| commit | 655d75a3cf154d14b10ffbf2baa42a549cf214f7 (patch) | |
| tree | 546dbebac0a84c2b6fcf5afb4c1adb5729bdd7bd /app/constants.php | |
| parent | bf65a95851f027c465e235b6988ae207c8a1f8ef (diff) | |
Add new constants: FILES_DIR and DEBUG_FILE
Diffstat (limited to 'app/constants.php')
| -rw-r--r-- | app/constants.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/constants.php b/app/constants.php index f0384d30..9245d023 100644 --- a/app/constants.php +++ b/app/constants.php @@ -2,6 +2,7 @@ // Enable/disable debug defined('DEBUG') or define('DEBUG', false); +defined('DEBUG_FILE') or define('DEBUG_FILE', 'data/debug.log'); // Application version defined('APP_VERSION') or define('APP_VERSION', 'master'); @@ -64,3 +65,7 @@ defined('MAIL_SENDMAIL_COMMAND') or define('MAIL_SENDMAIL_COMMAND', '/usr/sbin/s // Enable or disable "Strict-Transport-Security" HTTP header defined('ENABLE_HSTS') or define('ENABLE_HSTS', true); + +// Default files directory +defined('FILES_DIR') or define('FILES_DIR', 'data/files/'); + |
