diff options
author | Ryan Bigg <radarlistener@gmail.com> | 2010-11-26 21:14:58 +1100 |
---|---|---|
committer | Ryan Bigg <radarlistener@gmail.com> | 2010-11-27 07:57:10 +1100 |
commit | 6aa408e11cc99603778eb99e8cd2e585e0f97b50 (patch) | |
tree | 4a2bb437446cf326732d3fdd917bd49011f2c0ba /railties | |
parent | 3a50799ab8aede48767612ba1d4cc904f294cdb0 (diff) | |
download | rails-6aa408e11cc99603778eb99e8cd2e585e0f97b50.tar.gz rails-6aa408e11cc99603778eb99e8cd2e585e0f97b50.tar.bz2 rails-6aa408e11cc99603778eb99e8cd2e585e0f97b50.zip |
Add mention of config.serve_static_assets to config guide
Diffstat (limited to 'railties')
-rw-r--r-- | railties/guides/source/configuring.textile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/railties/guides/source/configuring.textile b/railties/guides/source/configuring.textile index c395e42c00..91c4c2b0f7 100644 --- a/railties/guides/source/configuring.textile +++ b/railties/guides/source/configuring.textile @@ -77,6 +77,8 @@ h4. Rails General Configuration * +config.root+ configures the root path of the application. +* +config.serve_static_assets+ configures Rails to serve static assets. Defaults to _true_, but in the production environment is turned off. The server software used to run the application should be used to serve the assets instead. + * +config.time_zone+ sets the default time zone for the application and enables time zone awareness for Active Record. * +config.whiny_nils+ enables or disabled warnings when an methods of nil are invoked. Defaults to _false_. |