Nginx and upstart

Hi

I’m using the following script to keep nginx up and running:

start on (filesystem and net-device-up IFACE=lo)
stop on runlevel [!2345]

env DAEMON=/usr/sbin/nginx
env CONF=/etc/nginx/nginx.conf
env PID=/var/run/nginx.pid

respawn
respawn limit 10 5

pre-start script
$DAEMON -t
if [ $? -ne 0 ]; then
exit $?
fi
end script

exec $DAEMON -c $CONF -g “daemon off;” > /dev/null 2>&1

It works fine except if I kill the master process with eg. kill -5. If I
kill it with kill command the pid keeps changing every few seconds. Any
idea
how to fix this?

Posted at Nginx Forum: