This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
commit 64fa4170616e360c8222352468bf7938d5cb3381
tree 6c327d53bb8baec56fab6c2f9819aa5ac06d0b5e
parent b09f740d4790d935da4a2383e9f9826dc19e9065
tree 6c327d53bb8baec56fab6c2f9819aa5ac06d0b5e
parent b09f740d4790d935da4a2383e9f9826dc19e9065
railscasts-episodes / episode-122
episode-122/README
Railscasts Episode #122: Passenger in Development http://railscasts.com/episodes/122 Commands sudo gem install passenger sudo passenger-install-apache2-module mate /etc/apache2/httpd.conf sudo apachectl graceful mate /etc/hosts tail -f log/development touch tmp/restart.txt Passenger Pref Pane http://www.fngtps.com/2008/06/putting-the-pane-back-into-deployment Apache Config LoadModule passenger_module /Library/Ruby/Gems/1.8/gems/passenger-2.0.2/ext/apache2/mod_passenger.so PassengerRoot /Library/Ruby/Gems/1.8/gems/passenger-2.0.2 PassengerRuby /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby NameVirtualHost *:80 <VirtualHost *:80> ServerName railscasts.local DocumentRoot "/Users/rbates/code/railscasts/public" RailsEnv development RailsAllowModRewrite off <directory "/Users/rbates/code/railscasts/public"> Order allow,deny Allow from all </directory> </VirtualHost> Hosts Config 127.0.0.1 railscasts.local








