Saltstack Official Nginx Formula
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- # nginx
-
- description "nginx http daemon"
- author "George Shammas <georgyo@gmail.com>"
-
- start on (filesystem and net-device-up IFACE=lo)
- stop on runlevel [!2345]
-
- 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
|