summaryrefslogtreecommitdiffstats
path: root/acf.conf
blob: 19c3dbdb5f77dbb8695e3ce411f7acef65080ab0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Configuration file for Alpine Configuration Framework

# Directories where the application resides
# appdir and libdir 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/

# sessiondir is where the session state files are stored
sessiondir=/tmp/

# logfile - if undefined will log with system logger
# 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

# Auditing can be done before and/or after a commit (controller permitting)
# ${TEMPFILE} and ${CONFFILE} are used precommit
# only ${CONFFILE} has any meaning postcommit

#audit_precommit=diff -u ${CONFFILE} ${TEMPFILE} >>/var/log/${self.conf.controller}.log 2>/dev/null
#audit_postcommit=echo ${self.sessiondata.userinfo.userid} made a change to ${CONFFILE} >>/var/log/acf.log

# For specific controller-based auditing, create acf-hooks.lua
# in this directory (see svn sources for an example)