Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

webrick 는 개발용 웹서버라 production 환경에서는 적합하지 않다. apache 나 NginX 같은 Web Server에서 rails app 구동할 예정이면 fcgi 보다는 Phusion Passenger 같은 전문 rails deployer를 설치해야 한다.

gem 으로 설치

compile 해서 설치하므로  gcc-c++패키지가 설치되어 있어야 한다.
gem install passenger
passenger-install-apache2-module

 

yum 으로 설치

passenger repository 인 http://passenger.stealthymonkeys.com/ 를 통해 설치

rpm --import http://passenger.stealthymonkeys.com/RPM-GPG-KEY-stealthymonkeys.asc
yum install http://passenger.stealthymonkeys.com/rhel/6/passenger-release.noarch.rpm
yum install mod_passenger
  • No labels