aboutsummaryrefslogtreecommitdiffstats
path: root/railties/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-07-22 06:18:25 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-07-22 06:18:25 +0000
commit7d6f78377a1cc7208edf16af15fd3671dc9d3c33 (patch)
tree7f706e30bac087727dac3c58569263b84a5e5eb0 /railties/CHANGELOG
parent7ebdecfb89c840cdf8c0a35084f962e3174fcf1c (diff)
downloadrails-7d6f78377a1cc7208edf16af15fd3671dc9d3c33.tar.gz
rails-7d6f78377a1cc7208edf16af15fd3671dc9d3c33.tar.bz2
rails-7d6f78377a1cc7208edf16af15fd3671dc9d3c33.zip
Added an empty robots.txt to public/, so that web servers asking for it won't trigger a dynamic call, like favicon.ico #1738 [michael@schubert]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1876 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/CHANGELOG')
-rw-r--r--railties/CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/railties/CHANGELOG b/railties/CHANGELOG
index fcef50e3d9..a343069635 100644
--- a/railties/CHANGELOG
+++ b/railties/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Added an empty robots.txt to public/, so that web servers asking for it won't trigger a dynamic call, like favicon.ico #1738 [michael@schubert]
+
* Dropped the 'immediate close-down' of FCGI processes since it didn't work consistently and produced bad responses when it didn't. So now a TERM ensures exit after the next request (just as if the process is handling a request when it receives the signal). This means that you'll have to 'nudge' all FCGI processes with a request in order to ensure that they have all reloaded. This can be done by something like ./script/process/repear --nudge 'http://www.myapp.com' --instances 10, which will load the myapp site 10 times (and thus hit all of the 10 FCGI processes once, enough to shut down).