diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-02-24 12:40:20 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-02-24 12:40:20 +0000 |
commit | 03b531a44eed3313b61dbece6c9f0c6180798c3e (patch) | |
tree | 6c1f2270b8aff36006f06ae7de4f4bf8bc5c0d73 | |
parent | 847436a478c991cee2393414bb98662f31cc8b54 (diff) | |
download | rails-03b531a44eed3313b61dbece6c9f0c6180798c3e.tar.gz rails-03b531a44eed3313b61dbece6c9f0c6180798c3e.tar.bz2 rails-03b531a44eed3313b61dbece6c9f0c6180798c3e.zip |
Updated a few more docs
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@793 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rw-r--r-- | railties/README | 10 | ||||
-rw-r--r-- | railties/html/index.html | 2 |
2 files changed, 5 insertions, 7 deletions
diff --git a/railties/README b/railties/README index 49f82b54c1..ca5f3737fd 100644 --- a/railties/README +++ b/railties/README @@ -32,7 +32,7 @@ link:files/vendor/actionpack/README.html. == Optionals -* Apache 1.3.x or 2.x (or any FastCGI-capable webserver with a +* Apache 1.3.x or 2.x or lighttpd 1.3.11+ (or any FastCGI-capable webserver with a mod_rewrite-like module) * FastCGI (or mod_ruby) for better performance on Apache @@ -166,7 +166,7 @@ app/helpers Holds view helpers that should be named like weblog_helper.rb. config - Configuration files for Apache, database, and other dependencies. + Configuration files for the Rails environment, the routing map, the database, and other dependencies. components Self-contained mini-applications that can bundle controllers, models, and views together. @@ -176,10 +176,8 @@ lib belong controllers, models, or helpers. This directory is in the load path. public - The directory available for Apache, which includes symbolic links to other - parts of the structure that are to be made available. Refrain from placing - actual files in here if you're using CVS and don't want to check in this - directory. + The directory available for the web server. Contains sub-directories for images, stylesheets, + and javascripts. Also contains the dispatchers and the default HTML files. script Helper scripts for automation and generation. diff --git a/railties/html/index.html b/railties/html/index.html index 0cc0ecf9d4..0c36b90579 100644 --- a/railties/html/index.html +++ b/railties/html/index.html @@ -32,7 +32,7 @@ <p><b>Before you move on</b>, verify that the following conditions have been met:</p> <ol> - <li>The log directory and the empty log files must be writable to the web server (<code>chmod -R 666 log/*</code>). + <li>The log and public directories must be writable to the web server (<code>chmod -R 775 log</code> and <code>chmod -R 775 public</code>). <li> The shebang line in the public/dispatch* files must reference your Ruby installation. <br/> You might need to change it to <code>#!/usr/bin/env ruby</code> or point directly at the installation. |