aboutsummaryrefslogtreecommitdiffstats
path: root/railties/README
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-02-21 01:01:24 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-02-21 01:01:24 +0000
commit48a44b77c138826e9ffaecd6fc63627d3f670086 (patch)
treef8228141bde6559a93c2ad3281c3db0519678d7f /railties/README
parent824558816acb7b930624e3cbd4dae8e7413e12f4 (diff)
downloadrails-48a44b77c138826e9ffaecd6fc63627d3f670086.tar.gz
rails-48a44b77c138826e9ffaecd6fc63627d3f670086.tar.bz2
rails-48a44b77c138826e9ffaecd6fc63627d3f670086.zip
Fixed caching for root and Routing for getting back the current url
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@727 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/README')
-rw-r--r--railties/README10
1 files changed, 6 insertions, 4 deletions
diff --git a/railties/README b/railties/README
index cedb61ce21..49f82b54c1 100644
--- a/railties/README
+++ b/railties/README
@@ -71,11 +71,10 @@ server.port = 8080
server.bind = "127.0.0.1"
# server.event-handler = "freebsd-kqueue" # needed on OS X
-server.modules = ( "mod_rewrite", "mod_access", "mod_fastcgi" )
+server.modules = ( "mod_rewrite", "mod_fastcgi" )
-server.indexfiles = ( "index.html" )
-url.rewrite = ( "^([^.]+)$" => "$1.html" )
-server.error-handler-404 = "/dispatch.fcgi" # change to dispatch.cgi to run CGI
+url.rewrite = ( "^/$" => "index.html", "^([^.]+)$" => "$1.html" )
+server.error-handler-404 = "/dispatch.fcgi"
server.document-root = "/path/application/public"
server.errorlog = "/path/application/log/server.log"
@@ -169,6 +168,9 @@ app/helpers
config
Configuration files for Apache, database, and other dependencies.
+components
+ Self-contained mini-applications that can bundle controllers, models, and views together.
+
lib
Application specific libraries. Basically, any kind of custom code that doesn't
belong controllers, models, or helpers. This directory is in the load path.