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
# connect to virtual host | |
ssh root@<ip address> | |
> <root password> | |
# install node.js with apt-get | |
sudo apt-get update | |
sudo apt-get install -y python-software-properties python g++ make nano | |
sudo add-apt-repository -y ppa:chris-lea/node.js | |
sudo apt-get update | |
sudo apt-get install nodejs |
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
http://git-scm.com/ | |
http://git-scm.com/book/en/Git-Branching-Basic-Branching-and-Merging | |
http://ndpsoftware.com/git-cheatsheet.html | |
https://help.github.com/articles/fork-a-repo | |
git status | |
git clean |
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
# other things that you might need as well | |
# git | |
sudo apt-get install git-core | |
# configure git via file | |
sudo nano ~/.gitconfig | |
# or configure git via commands | |
git config --global user.name "NewUser" | |
git config --global user.email [email protected] |
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
# error message when connected via ssh to virtual host | |
Please check that your locale settings: | |
LANGUAGE = (unset), | |
LC_ALL = (unset), | |
LANG = "de_CH.UTF-8" | |
are supported and installed on your system. | |
perl: warning: Falling back to the standard locale ("C"). | |
# add locale | |
sudo locale-gen de_CH.UTF-8 |
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
npm install forever -g | |
cd /path/to/your/node/app/ | |
forever start --spinSleepTime 10000 app.js | |
# Where --spinSleepTime 10000 refers to the minimum uptime (in milliseconds) between launches of a crashing script. This command will work for almost all cases. | |
# Now point your browser to http://[your-vps-ip]:[port] and see your app running. |
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
# allow multiple domains | |
nano /etc/nginx/nginx.conf | |
# uncomment or add this in the http section: | |
> server_names_hash_bucket_size 64; | |
# configure new site | |
nano /etc/nginx/conf.d/intesso.com.conf |
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
https://www.digitalocean.com/community/articles/how-to-host-multiple-node-js-applications-on-a-single-vps-with-nginx-forever-and-crontab | |
https://www.digitalocean.com/community/articles/how-to-install-nginx-on-ubuntu-12-04-lts-precise-pangolin |
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
nano /etc/apache2/ports.conf | |
>NameVirtualHost *:3080 | |
>Listen 3080 | |
nano /etc/apache2/sites-available/default | |
> <VirtualHost *:3080> | |
sudo service apache2 restart |
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
touch starter.sh | |
chmod 754 starter.sh | |
nano starter.sh | |
# file content: | |
#!/bin/sh | |
if [ $(ps aux | grep $USER | grep node | grep -v grep | wc -l | tr -s "\n") -eq 0 ] | |
then | |
export PATH=/usr/local/bin:$PATH |
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
# kill specific process, check with 'ps -aufx | grep node' | |
kill <pidnr> | |
# kill all node processes | |
killall -9 node | |
# terminate forever process, check with 'forever list' | |
forever stop <number 0..n> |
OlderNewer