Last active
December 11, 2015 10:59
-
-
Save cliftonlabrum/4590797 to your computer and use it in GitHub Desktop.
Install Ruby, Passenger, and Apache on Digital Ocean
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
--- Install Ruby --- | |
rvm install ruby-1.9.3-p194 | |
--- Install Passenger --- | |
gem install passenger | |
--- Install Apache Dependencies --- | |
* To install Apache 2: | |
sudo apt-get install apache2-mpm-prefork | |
* To install Apache 2 development headers: | |
sudo apt-get install apache2-prefork-dev | |
--- Install Apache --- | |
passenger-install-apache2-module |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment