updated on Thu Jan 19 20:01:47 UTC 2012
[aur-mirror.git] / uwsgi-vhosts / uwsgi.confd
blob7072923ea8fe444a28da1341d4f6e858aecdac31
1 # /etc/conf.d/uwsgi
2 # uwsgi settings
4 # the binary
5 UWSGI_BIN="/usr/bin/uwsgi"
6 # the pid file
7 UWSGI_PID="/var/run/uwsgi.pid"
8 # the log file
9 UWSGI_LOG="/var/log/uwsgi.log"
11 # the arguments to the binary
12 UWSGI_ARGS=("--emperor /etc/uwsgi"
13         "--emperor-tyrant"
14         "--pidfile $UWSGI_PID"
15         "--daemonize $UWSGI_LOG")
17 START_COMMAND="$UWSGI_BIN ${UWSGI_ARGS[*]}"