Sha256: b2738e37deb652364d3e42a2b1a3123d8c74a428362bd25111edb42995ed71d6
Contents?: true
Size: 958 Bytes
Versions: 34
Compression:
Stored size: 958 Bytes
Contents
<banner>Deploying a Ruby on Rails application: an example</banner> Suppose you have a Rails application in <b>/somewhere</b>. Add a virtual host to your Apache configuration file and set its DocumentRoot to <b>/somewhere/public</b>: <b> <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> </b> And that's it! You may also want to check the Users Guide for security and optimization tips, troubleshooting and other useful information: <yellow><%= @users_guide %></yellow> Enjoy Phusion Passenger, a product of Phusion (<b><%= @phusion_website %></b>) :-) <b><%= @passenger_website %></b> Phusion Passenger is a trademark of Hongli Lai & Ninh Bui.
Version data entries
34 entries across 34 versions & 7 rubygems