Last active
August 29, 2015 14:00
-
-
Save taka-wang/65edec647dce3cbcbc33 to your computer and use it in GitHub Desktop.
Install HA+SSL+Node.js
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
#install node.js | |
sudo apt-get install python-software-properties | |
sudo add-apt-repository ppa:chris-lea/node.js | |
sudo apt-get update | |
sudo apt-get install python-software-properties python g++ make nodejs | |
#install haproxy | |
sudo apt-get install haproxy | |
#install stunnel | |
sudo apt-get install libssl-dev | |
wget https://www.stunnel.org/downloads/beta/stunnel-5.02b2.tar.gz | |
tar -zxvf stunnel-5.02b2.tar.gz | |
cd stunnel | |
./configure | |
make | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment