Created
August 7, 2014 20:15
-
-
Save Saicheg/dffd833ebd05513af0a3 to your computer and use it in GitHub Desktop.
upstat nginx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Nginx upstart script | |
### source: http://serverfault.com/a/391737/70451 | |
### /etc/init/nginx.conf | |
description "nginx http daemon" | |
start on (filesystem and net-device-up IFACE=lo) | |
stop on runlevel [!2345] | |
env DAEMON=/usr/local/sbin/nginx | |
env PIDFILE=/var/lock/nginx/nginx.pid | |
# Needed to allow Nginx to start, however, the wrong PID will be tracked | |
expect fork | |
# Test the nginx configuration (Upstart will not proceed if this fails) | |
pre-start exec $DAEMON -t | |
# Ensure nginx is shutdown gracefully | |
# Upstart will be tracking the wrong PID so the following is needed to stop nginx | |
post-stop exec $DAEMON -s stop | |
# Start Nginx | |
exec $DAEMON |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment