Sha256: 8f8b676bf87301123ac5c2f99ddc1cebfea31e91da822e56e83d725b63118928
Contents?: true
Size: 973 Bytes
Versions: 28
Compression:
Stored size: 973 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 # !!! Be sure to point DocumentRoot to 'public'! DocumentRoot /somewhere/public <Directory /somewhere/public> # This relaxes Apache security settings. AllowOverride all # MultiViews must be turned off. Options -MultiViews </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
28 entries across 28 versions & 1 rubygems