diff options
Diffstat (limited to 'acf.conf')
-rw-r--r-- | acf.conf | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -1,13 +1,16 @@ # Configuration file for Alpine Configuration Framework # Directories where the application resides -# appdir and libdir may be comma-separated lists +# appdir, libdir, and skindir may be comma-separated lists # paths are checked from left to right # for .lua and .lsp files - the first found file will be used # for .roles and .menu files - all files will be combined appdir=/usr/share/acf/app/ libdir=/usr/share/acf/lib/ wwwdir=/usr/share/acf/www/ +staticdir=/skins/static/ +skindir=/skins/,/userskins/ +# skins are found in subdirectories of wwwdir/skindir # sessiondir is where the session state files are stored sessiondir=/tmp/ @@ -16,9 +19,9 @@ sessiondir=/tmp/ # only applies to web access, client access will always use system logger logfile = /var/log/acf.log -# ACF is skinnable - these specifiy the active skin -skindir=/skins/ -skin=alps +# ACF is skinnable - this specifies the active skin +# will attempt to load skin/basename(skin).css +skin=/skins/alps # Auditing can be done before and/or after a commit (controller permitting) # ${TEMPFILE} and ${CONFFILE} are used precommit |