Execute o Node.js como um serviço no Ubuntu
usar upstart sudo apt-get install upstart escrever script /etc/init/your_program.conf exemplo #!upstartdescription “node.js chatapp server”author “subicura”start on startupstop on shutdownscript export HOME=”/home/hosting” echo $$ > /var/run/chatapp.pid exec sudo -u hosting /usr/local/bin/node …
Continuar lendo