Project

General

Profile

Download (742 Bytes) Statistics
| Branch: | Tag: | Revision:
LoadModule passenger_module modules/mod_passenger.so
<IfModule mod_passenger.c>
PassengerRoot @PASSENGERROOT@
PassengerRuby @BINDIR@/ruby
</IfModule>

# Deploying a Ruby on Rails application: an example

# Suppose you have a Rails application in /somewhere. Add a virtual host to
# your Apache configuration file and set its DocumentRoot to /somewhere/public:
#
# <VirtualHost *:80>
# ServerName www.yourhost.com
# DocumentRoot /somewhere/public # <-- be sure to point to 'public'!
# <Directory /somewhere/public>
# AllowOverride all # <-- relax Apache security settings
# Options -MultiViews # <-- MultiViews must be turned off
# </Directory>
# </VirtualHost>
(1-1/17)