Created
March 21, 2015 10:46
-
-
Save mtunjic/6df5370b3086efb8374f to your computer and use it in GitHub Desktop.
setup nginx for rails
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
| echo "Installing libs..." | |
| sudo apt-get update | |
| sudo apt-get install git-core curl zlib1g-dev build-essential libssl-dev libreadline-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev libcurl4-openssl-dev python-software-properties libffi-dev | |
| cd | |
| echo "Installing rbenv..." | |
| git clone git://github.com/sstephenson/rbenv.git .rbenv | |
| echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc | |
| echo 'eval "$(rbenv init -)"' >> ~/.bashrc | |
| exec $SHELL | |
| git clone git://github.com/sstephenson/ruby-build.git ~/.rbenv/plugins/ruby-build | |
| echo 'export PATH="$HOME/.rbenv/plugins/ruby-build/bin:$PATH"' >> ~/.bashrc | |
| exec $SHELL | |
| git clone https://github.com/sstephenson/rbenv-gem-rehash.git ~/.rbenv/plugins/rbenv-gem-rehash | |
| echo "Installing ruby 2.2.1..." | |
| rbenv install 2.2.1 | |
| rbenv global 2.2.1 | |
| ruby -v | |
| echo "gem: --no-ri --no-rdoc" > ~/.gemrc | |
| gem install bundler | |
| echo "Installing Nginx..." | |
| # Install Phusion's PGP key to verify packages | |
| gpg --keyserver keyserver.ubuntu.com --recv-keys 561F9B9CAC40B2F7 | |
| gpg --armor --export 561F9B9CAC40B2F7 | sudo apt-key add - | |
| # Add HTTPS support to APT | |
| sudo apt-get install apt-transport-https | |
| # Add the passenger repository | |
| sudo sh -c "echo 'deb https://oss-binaries.phusionpassenger.com/apt/passenger trusty main' >> /etc/apt/sources.list.d/passenger.list" | |
| sudo chown root: /etc/apt/sources.list.d/passenger.list | |
| sudo chmod 600 /etc/apt/sources.list.d/passenger.list | |
| sudo apt-get update | |
| # Install nginx and passenger | |
| sudo apt-get install nginx-full passenger | |
| sudo service nginx start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment