public
Description: Phusion Passenger (mod_rails)
Homepage: http://www.modrails.com/
Clone URL: git://github.com/FooBarWidget/passenger.git
Search Repo:
Click here to lend your support to: passenger and make a donation at www.pledgie.com !
Make Passenger installation completely self-contained. Add some user 
suggestions to the users guide.
Hongli Lai (Phusion) (author)
Thu Apr 10 04:40:56 -0700 2008
commit  fd044aed9a8b1ad10c1ebff4adb3ea4fc6399323
tree    63d1a4b7fbea310231dd2c9651d0e348820eb68c
parent  d6ef3dd061e74fec87463bf9f303044fc335c99c
...
197
198
199
200
201
 
 
202
203
204
205
206
207
208
 
209
210
211
...
197
198
199
 
 
200
201
202
203
204
205
206
207
 
208
209
210
211
0
@@ -197,15 +197,15 @@ private
0
     line
0
     color_puts '<banner>Compiling and installing Apache 2 module...</banner>'
0
     puts "cd #{PASSENGER_ROOT}"
0
- puts "rake clean apache2:install"
0
- return system("rake", "clean", "apache2:install")
0
+ puts "rake clean apache2"
0
+ return system("rake", "clean", "apache2")
0
   end
0
   
0
   def show_apache2_config_snippets
0
     puts
0
     line
0
     render_template 'apache2_config_snippets',
0
- :module_location => `#{APXS2} -q LIBEXECDIR`.strip << "/mod_passenger.so",
0
+ :module_location => "#{PASSENGER_ROOT}/ext/apache2/mod_passenger.so",
0
       :spawn_server_location => "#{PASSENGER_ROOT}/bin/passenger-spawn-server",
0
       :ruby => RUBY
0
     wait
0
doc/Users guide.txt → 100644
...
285
286
287
 
 
 
 
 
288
289
290
...
285
286
287
288
289
290
291
292
293
294
295
0
@@ -285,6 +285,11 @@ RailsEnv <string>::
0
 +
0
 This option may only occur once, in the global server configuration.
0
 The default is 'production'.
0
++
0
+TIP: Even though it is not possible to specify a different RailsEnv
0
+per virtual host in the Apache configuration file, one can set the
0
+Rails environment by editing `RAILS_ENV=...` in the application's
0
+'config/environment.rb'.
0
 
0
 RailsMaxPoolSize <integer>::
0
   The maximum number of Ruby on Rails application instances that may

Comments

    No one has commented yet.