apacheにrailsを連携

昨日に引き続き、ApacheRailsを連携させる。

apacherailsを設定
# gem install passenger
# export PATH=/usr/local/apache2/bin:$PATH
# passenger-install-apache2-module

パスを通しておかないと、モジュールをインストールしようとしても
apacheが見つからないよorソースからインストールしたapacheじゃないほうを参照されるので注意。
※このエントリの環境では、apacheはソースからインストールしてます。

以下が成功したときのコメントだけど、
なんだかすごく丁寧な解説でほっこりしたw


The Apache 2 module was successfully installed.

Please edit your Apache configuration file, and add these lines:

LoadModule passenger_module /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.12/ext/apache2/mod_passenger.so
PassengerRoot /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.12
PassengerRuby /usr/local/bin/ruby

After you restart Apache, you are ready to deploy any number of Ruby on Rails
applications on Apache, without any further Ruby on Rails-specific
configuration!

Suppose you have a Rails application in /somewhere. Add a virtual host to your
Apache configuration file and set its DocumentRoot to /somewhere/public:


ServerName www.yourhost.com
# !!! Be sure to point DocumentRoot to 'public'!
DocumentRoot /somewhere/public

# This relaxes Apache security settings.
AllowOverride all
# MultiViews must be turned off.
Options -MultiViews

And that's it! You may also want to check the Users Guide for security and
optimization tips, troubleshooting and other useful information: