- added some descriptions to config.ini settings
This commit is contained in:
@@ -6,17 +6,20 @@ SERVER_NAME = PATHFINDER
|
||||
[globals]
|
||||
; Default Verbosity level of the stack trace.
|
||||
; Assign values between 0 to 3 for increasing verbosity levels. Check (environment.ini) config for overwriting
|
||||
; (default: 0)
|
||||
DEBUG = 0
|
||||
|
||||
; If TRUE, the framework, after having logged stack trace and errors, stops execution
|
||||
; -> (die without any status) when a non-fatal error is detected.
|
||||
; -> (die without any status) when a non-fatal error is detected. (default: FALSE)
|
||||
HALT = FALSE
|
||||
|
||||
; Timezone to use. Sync program with eve server time
|
||||
; Timezone to use. Sync program with eve server time. (default: UTC)
|
||||
TZ = UTC
|
||||
|
||||
; Cache backend. Can handle Memcache module, APC, WinCache, XCache and a filesystem-based cache.
|
||||
CACHE = TRUE
|
||||
; Cache backend. Can handle Redis, Memcache module, APC, WinCache, XCache and a filesystem-based cache.
|
||||
; (default: folder=tmp/cache/)
|
||||
CACHE = folder=tmp/cache/
|
||||
;CACHE = redis=localhost:6379
|
||||
|
||||
; Callback functions ==============================================================================
|
||||
ONERROR = Controller\Controller->showError
|
||||
@@ -26,25 +29,25 @@ UNLOAD = Controller\Controller->unload
|
||||
; Path configurations =============================================================================
|
||||
; relative to "BASE" dir
|
||||
|
||||
; Temporary folder for cache, filesystem locks, compiled F3 templates, etc.
|
||||
; Temporary folder for cache, filesystem locks, compiled F3 templates, etc. (default: tmp/)
|
||||
TEMP = tmp/
|
||||
|
||||
; Log file folder
|
||||
; Log file folder. (default: logs/)
|
||||
LOGS = logs/
|
||||
|
||||
; UI/template folder
|
||||
; UI/template folder. (default: public/)
|
||||
UI = public/
|
||||
|
||||
; Autoloader for user-defined PHP classes that the framework will attempt to autoload at runtime
|
||||
; Autoloader for user-defined PHP classes that the framework will attempt to autoload at runtime. (default: app/main/)
|
||||
AUTOLOAD = app/main/
|
||||
|
||||
; Favicons
|
||||
; Favicons. (default: favicon/)
|
||||
FAVICON = favicon/
|
||||
|
||||
; Export folder (e.g. static table data)
|
||||
; Export folder (e.g. static table data). (default: export/)
|
||||
EXPORT = export/
|
||||
|
||||
; Default language (overwrites HTTP Accept-Language request header) used for "setlocale()" affects number formatting
|
||||
; Default language (overwrites HTTP Accept-Language request header) used for "setlocale()" affects number formatting. (default: en-US)
|
||||
LANGUAGE = en-US
|
||||
|
||||
; load additional config files
|
||||
|
||||
Reference in New Issue
Block a user