소스 검색

Synchronized upstart script with the one recommended by nginx.

http://wiki.nginx.org/Upstart
susefix
oboyle 10 년 전
부모
커밋
07b7088b98
1개의 변경된 파일22개의 추가작업 그리고 7개의 파일을 삭제
  1. +22
    -7
      nginx/templates/upstart.jinja

+ 22
- 7
nginx/templates/upstart.jinja 파일 보기

@@ -1,8 +1,23 @@
# startup script for Nginx

respawn

start on filesystem or runlevel [2345]
# nginx
description "nginx http daemon"
author "George Shammas <georgyo@gmail.com>"
start on (filesystem and net-device-up IFACE=lo)
stop on runlevel [!2345]

exec /usr/sbin/nginx -c /etc/nginx/nginx.conf
env DAEMON=/usr/sbin/nginx
expect fork
respawn
respawn limit 10 5
#oom never
pre-start script
$DAEMON -t
if [ $? -ne 0 ]
then exit $?
fi
end script
exec $DAEMON

Loading…
취소
저장