Guest User

Untitled

a guest
Jul 22nd, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. $ sudo a2dissite site_name
  2. $ rvm --default use ree (be specific as possible about the version)
  3. $ sudo a2dismod passenger
  4. $ gem install passenger --no-ri --no-rdoc
  5. $ passenger-install-apache2-module
  6. $ sudo vim /etc/apache2/mods-available/passenger.load and change path to reflect REE per Passenger module post-install instructions
  7. $ sudo vim /etc/apache2/mods-available/passenger.conf and change path to reflect REE per Passenger module post-install instructions
  8. $ sudo a2enmod passenger
  9. $ sudo a2ensite site_name
  10. $ sudo /etc/init.d/apache2 restart
  11. follow instructions from a2enmod to restart apache, which will also reload site configuration
  12. test the site
Add Comment
Please, Sign In to add comment