# Defaults for middleman initscript
# sourced by /etc/init.d/middleman

#
# This is a POSIX shell fragment
#

# Additional options that are passed to the Daemon.
# Location of the configuration file
CONFFILE="/etc/middleman.xml"

# Location of the section file
SECTIONFILE="/usr/share/middleman/section.xml"

# Location of the log files
LOGFILE="/var/log/middleman/middleman.log"

# Location of the PID file
PIDFILE="/var/run/middleman/middleman.pid"

# What to put in the log file
# Type "/usr/sbin/middleman -h" to see all available logging levels
# By default, all is logged
#LOGLEVEL=

# Don't run as root for security reason
RUNUSER="proxy"
RUNGROUP="proxy"

DAEMON_OPTS="-c $CONFFILE -s $SECTIONFILE\
             -l $LOGFILE -p $PIDFILE\
             -u $RUNUSER -g $RUNGROUP"