Advertisement
Guest User

Untitled

a guest
Dec 20th, 2014
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerName test.com
  3. DocumentRoot /var/www/html/test/public
  4. RackBaseURI /var/www/html/test/public
  5. <Directory /var/www/html/test/public>
  6. # This relaxes Apache security settings.
  7. AllowOverride all
  8. # MultiViews must be turned off.
  9. Options -MultiViews
  10. </Directory>
  11. PassengerMinInstances 1
  12. </VirtualHost>
  13.  
  14. LoadModule passenger_module /usr/local/rvm/gems/ruby-1.9.3-p194/gems/passenger-3.0.17/ext/apache2/mod_passenger.so
  15. PassengerRoot /usr/local/rvm/gems/ruby-1.9.3-p194/gems/passenger-3.0.17
  16. PassengerRuby /usr/local/rvm/wrappers/ruby-1.9.3-p194/ruby
  17. RailsSpawnMethod conservative
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement