Created
December 2, 2014 16:03
-
-
Save zacharyblank/cf8932a66cc74ed83d03 to your computer and use it in GitHub Desktop.
upstart
This file contains hidden or 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
description "Public node server" | |
author "Zachary Blank" | |
start on started mountall | |
stop on shutdown | |
# Automatically Respawn: | |
respawn | |
respawn limit 99 5 | |
script | |
export NODE_ENV="dev" | |
export PORT=8020 | |
exec /usr/bin/node /vagrant/web/server.js >> /var/log/public.log 2>&1 | |
end script | |
post-start script | |
# Optionally put a script here that will notifiy you node has (re)started | |
# /root/bin/hoptoad.sh "node.js has started!" | |
end script |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment