Last active
December 7, 2018 17:53
-
-
Save hubertursua/003eaf2e06924a0389fe to your computer and use it in GitHub Desktop.
NodeJS, Forever, and Upstart (Ubuntu)
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
#!upstart | |
start on filesystem and started networking | |
stop on shutdown | |
expect fork | |
setuid ubuntu | |
env HOME="/home/ubuntu" | |
env NODE_ENV="production" | |
env MIN_UPTIME="5000" | |
env SPIN_SLEEP_TIME="2000" | |
chdir /home/ubuntu/myapp | |
env APP_EXEC="bin/www" | |
env UID="myapp" | |
script | |
exec forever --uid="$UID" -a --minUptime=$MIN_UPTIME --spinSleepTime=$SPIN_SLEEP_TIME start $APP_EXEC | |
end script | |
pre-stop script | |
exec forever stop "$UID" | |
end script |
thanks for this interesting code but using UID is deprecated referring to documentation https://github.com/foreverjs/forever
for other solution check this thread http://stackoverflow.com/questions/13385029/automatically-start-forever-node-on-system-restart
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Does this script automatically respawn forever ?