- new cronjob for "delete expired connections", #219 - fixed "not updating" map changes, closed #357 - improved caching strategy for DB models (file cache) - improved "map sharing"
56 lines
1.9 KiB
INI
56 lines
1.9 KiB
INI
; Global Framework Config
|
|
|
|
[SERVER]
|
|
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
|
|
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.
|
|
HALT = FALSE
|
|
|
|
; Timezone to use. Sync program with eve server time
|
|
TZ = UTC
|
|
|
|
; Cache backend. Can handle Memcache module, APC, WinCache, XCache and a filesystem-based cache.
|
|
CACHE = TRUE
|
|
|
|
; Callback functions ==============================================================================
|
|
ONERROR = Controller\Controller->showError
|
|
|
|
UNLOAD = Controller\Controller->unload
|
|
|
|
; Path configurations =============================================================================
|
|
; relative to "BASE" dir
|
|
|
|
; Temporary folder for cache, filesystem locks, compiled F3 templates, etc.
|
|
TEMP = tmp/
|
|
|
|
; Log file folder
|
|
LOGS = logs/
|
|
|
|
; UI/template folder
|
|
UI = public/
|
|
|
|
; Autoloader for user-defined PHP classes that the framework will attempt to autoload at runtime
|
|
AUTOLOAD = app/main/
|
|
|
|
; Favicons
|
|
FAVICON = favicon/
|
|
|
|
; Export folder (e.g. static table data)
|
|
EXPORT = export/
|
|
|
|
; Default language (overwrites HTTP Accept-Language request header) used for "setlocale()" affects number formatting
|
|
LANGUAGE = en-US
|
|
|
|
; load additional config files
|
|
; DO NOT load environment.ini, it is loaded automatically
|
|
[configs]
|
|
app/routes.ini = true
|
|
app/pathfinder.ini = true
|
|
app/requirements.ini = true
|
|
app/cron.ini = true |