diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-08-22 21:48:27 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-08-22 21:48:27 -0400 |
commit | e2a9440c927f9ca698daf42990eead1f6a15a997 (patch) | |
tree | 79e761465071deb2cffcc73a275a5d152c0fe0f7 /doc | |
parent | 51fef80f7d0358583dd474789a87a972a61a3ac0 (diff) |
Fix undefined constant in config example file
Diffstat (limited to 'doc')
-rw-r--r-- | doc/config.markdown | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/config.markdown b/doc/config.markdown index e51fd54a..853fa6f2 100644 --- a/doc/config.markdown +++ b/doc/config.markdown @@ -37,6 +37,17 @@ Folder for uploaded files define('FILES_DIR', 'data/files'); ``` +Cache parameters +---------------- + +```php +// Available cache drivers are "file" and "memory" +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.DIRECTORY_SEPARATOR.'cache'); +``` + Enable/disable url rewrite -------------------------- |