yalf.ini 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. ; Main module name from modules/general/
  2. INDEX_MODULE="taskbar"
  3. ; Template name to preload from skins/ like "paper", "void", "miniml", "rpg", etc...
  4. YALF_SKIN="paper"
  5. ; Default application language. Loaded from languages directory.
  6. YALF_LANG="english"
  7. ; Allow online language switching by remote clients?
  8. ; Now supported locale switching by GET callback like ?yalfswitchlocale=ukrainian
  9. YALF_LANG_SWITCHABLE=1
  10. ;Is application global menu rendering enabled?
  11. YALF_MENU_ENABLED=1
  12. ;XHProf Hierarchical Profiler enabled?
  13. XHPROF=0
  14. ; XHProf libs path. Recomended to be masked in production.
  15. XHPROF_PATH="modules/foreign/xhprof"
  16. ; Your application logo, name and site URL
  17. YALF_LOGO="skins/wrcolor.png"
  18. YALF_URL="https://wolfrecorder.com"
  19. YALF_APP="WolfRecorder"
  20. YALF_TITLE="WolfRecorder"
  21. ; Disabled modules list. Separator - comma.
  22. YALF_DISABLED_MODULES=""
  23. ; Emulate RCMS users auth and rights system?
  24. YALF_AUTH_ENABLED=1
  25. ; Modules which not require any authorization (public modules)
  26. YALF_NO_AUTH_MODULES="remoteapi,pseudostream,manifestor"
  27. ; Logging emulation. Possible values: fake(output to nowhere), file(output to content/logs/yalflog.log), mysql (YALF_LOG_TABLE table)
  28. YALF_LOGGING_TYPE="mysql"
  29. YALF_LOG_TABLE="weblogs"
  30. ;Configs editable from web with sysconf module. Comma separated.
  31. YALF_EDITABLE_CONFIGS="config/yalf.ini,config/mysql.ini,config/binpaths.ini,config/globalmenu.ini,config/alter.ini"
  32. ; List of layers which must be loaded, with their dependencies.
  33. ; Format: LAYER_*="lib1,lib2,lib3" will load api/libs/api.lib1.php etc..
  34. LAYER_LOCALE="i18n"
  35. LAYER_NYANORM="mysql,nyanorm,sqldebug"
  36. LAYER_CACHE="ubconfig,ubcache"
  37. ;LAYER_MAPS="mapscompat,lmaps,ubconfig"
  38. ;LAYER_TELEGRAM="telegram,ubconfig"
  39. ;LAYER_WHOIS="whois"
  40. ;LAYER_SNMP="snmphelper,ubconfig"
  41. LAYER_ZEN="zenflow"
  42. ;LAYER_GRAVATAR="ubconfig,gravatar"
  43. LAYER_WR_CORE="backups,onvif,lair,systeminfo,updatemanager,net"
  44. LAYER_WR="storages,models,acl,cameras,recorder,archive,rotator,export,streamdog,restapi"
  45. ; Renderer layers
  46. LAYER_WEBRENDER="webrender,workicons,astral"
  47. ;LAYER_CLIRENDER="clirender"