We got nominated! Help us out and vote for GitHub as Best Bootstrapped Startup of 2008. (You can vote once a day.) [ hide ]

public
Description: Phusion Passenger (mod_rails)
Homepage: http://www.modrails.com/
Clone URL: git://github.com/FooBarWidget/passenger.git
Click here to lend your support to: passenger and make a donation at www.pledgie.com !
Minor change of wording.
Hongli Lai (Phusion) (author)
Wed Apr 02 03:58:55 -0700 2008
commit  4071540b7100aa4f89c3be2a9eb4a6f5e41fd7a7
tree    db94eda0a36776b79d289d2d414d7415996ff8ab
parent  a2d694020d18952f5a6586a49f23fa8bdda9e9fe
...
184
185
186
187
 
188
189
190
...
218
219
220
221
 
222
223
224
...
281
282
283
284
285
286
 
287
288
289
...
312
313
314
315
 
316
317
318
...
321
322
323
324
325
 
 
 
326
327
328
...
335
336
337
338
 
339
340
341
...
184
185
186
 
187
188
189
190
...
218
219
220
 
221
222
223
224
...
281
282
283
 
284
285
286
287
288
289
...
312
313
314
 
315
316
317
318
...
321
322
323
 
 
324
325
326
327
328
329
...
336
337
338
 
339
340
341
342
0
@@ -184,7 +184,7 @@ Next, add a `RailsBaseURI` option to the virtual host configuration:
0
 <VirtualHost *:80>
0
     ServerName www.zsfa.com
0
     DocumentRoot /websites/zsfa
0
- RailsBaseURI /rails
0
+ RailsBaseURI /rails # This line has been added.
0
 </VirtualHost>
0
 -------------------------------------------
0
 Then restart Apache. The application has now been deployed.
0
@@ -218,7 +218,7 @@ configuration options:
0
 RailsSpawnServer <filename>::
0
   The location to the Passenger spawn server. This configuration option is
0
   essential to Passenger. The correct value is given by the installer,
0
- and should not be changed manually.
0
+ and should usually not be changed manually.
0
 +
0
 This option may only occur once, in the global server configuration. If
0
 this option is not given, then Passenger will look for the program
0
@@ -281,9 +281,9 @@ The default is 'ruby'.
0
 [[rails_env]]
0
 RailsEnv <string>::
0
   This option allows one to specify the default `RAILS_ENV` value.
0
- The default is 'production'.
0
 +
0
 This option may only occur once, in the global server configuration.
0
+The default is 'production'.
0
 
0
 RailsMaxPoolSize <integer>::
0
   The maximum number of Ruby on Rails application instances that may
0
@@ -312,7 +312,7 @@ not hard to install.
0
 RailsPoolIdleTime <integer>::
0
   The maximum number of seconds that a Ruby on Rails application instance
0
   may be idle. That is, if an application instance hasn't done anything after
0
- the given amount of seconds, then it will be shutdown in order to conserve
0
+ the given number of seconds, then it will be shutdown in order to conserve
0
   memory.
0
 +
0
 Decreasing this value means that Rails applications will have to be spawned
0
@@ -321,8 +321,9 @@ notice a small delay when they visit your Rails site. However, it will also
0
 free up resources used by Rails applications more quickly.
0
 +
0
 The optimal value depends on the average time that a visitor spends on a single
0
-Rails web page. We recommend a value of `2 * x`, where `x` is the average number
0
-of seconds that a visitor spends on a single Rails web page. Your mileage may vary.
0
+Rails web page. We recommend a value of `2 * x`, where `x` is the average
0
+number of seconds that a visitor spends on a single Rails web page. But your
0
+mileage may vary.
0
 +
0
 This option may only occur once, in the global server configuration.
0
 The default value is '120'.
0
@@ -335,7 +336,7 @@ This option may only occur once, in the global server configuration.
0
 The default value is 'on'.
0
 
0
 [[RailsDefaultUser]]
0
-RailsDefaultUser <string>::
0
+RailsDefaultUser <username>::
0
   Passenger enables <<user_switching,user switching support>> by default.
0
   This configuration option allows one to specify which user Rails
0
   applications must run as, if user switching fails or is disabled.

Comments

    No one has commented yet.