summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-10-14 07:40:47 +0000
committergotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-10-14 07:40:47 +0000
commit8c293539cdaa659e724e9e55a0df5dbd145b53bf (patch)
treeb4060e9caf593cd43ba1ead6c57a8137c3e9e865
parent1f15b5fb487ad9d4e68dfc3773a859e0fa8307d8 (diff)
* lib/webrick/config.rb (Config::FileHandler): :UserDir should be nil.
It is harmful to permit the access to ~/public_html by default. suggested by Hiroyuki Iwatsuki. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9386 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog6
-rw-r--r--lib/webrick/config.rb2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 0db0ece9c8..f34a2e2486 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Fri Oct 14 16:39:37 2005 GOTOU Yuuzou <gotoyuzo@notwork.org>
+
+ * lib/webrick/config.rb (Config::FileHandler): :UserDir should be nil.
+ It is harmful to permit the access to ~/public_html by default.
+ suggested by Hiroyuki Iwatsuki.
+
Thu Oct 13 23:29:51 2005 Nobuyoshi Nakada <nobu@ruby-lang.org>
* parse.y (HEAPCNT): bison allocates indivisible size.
diff --git a/lib/webrick/config.rb b/lib/webrick/config.rb
index f787eea614..19d0c7ab14 100644
--- a/lib/webrick/config.rb
+++ b/lib/webrick/config.rb
@@ -71,7 +71,7 @@ module WEBrick
:HandlerCallback => nil,
:DirectoryCallback => nil,
:FileCallback => nil,
- :UserDir => "public_html",
+ :UserDir => nil, # e.g. "public_html"
:AcceptableLanguages => [] # ["en", "ja", ... ]
}