diff options
Diffstat (limited to 'community/passenger/passenger.install')
-rw-r--r-- | community/passenger/passenger.install | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/community/passenger/passenger.install b/community/passenger/passenger.install index 9c683e7cd..6faaab1b6 100644 --- a/community/passenger/passenger.install +++ b/community/passenger/passenger.install @@ -1,9 +1,9 @@ post_install() { echo "Please edit your Apache configuration file, and add these lines:" echo "" - echo "LoadModule passenger_module /var/aur/passenger3/src/passenger-3.0.0/ext/apache2/mod_passenger.so" - echo "PassengerRoot /var/aur/passenger3/src/passenger-3.0.0" - echo "PassengerRuby /opt/ruby1.8/bin/ruby" + echo "LoadModule passenger_module /usr/lib/httpd/modules/mod_passenger.so" + echo "PassengerRoot /usr/lib/passenger" + echo "PassengerRuby /usr/bin/ruby" echo "" echo "After you restart Apache, you are ready to deploy any number of Ruby on Rails" echo "applications on Apache, without any further Ruby on Rails-specific" @@ -28,5 +28,5 @@ post_install() { echo "And that's it! You may also want to check the Users Guide for security and" echo "optimization tips, troubleshooting and other useful information:" echo "" - echo "/var/aur/passenger3/src/passenger-3.0.0/doc/Users guide Apache.html" + echo "/usr/lib/passenger/doc/Users guide Apache.html" } |