From dfce0c8aaf21cfbdb2774c9de1ca5b87cae617d0 Mon Sep 17 00:00:00 2001 From: gotoyuzo Date: Fri, 14 Oct 2005 07:58:39 +0000 Subject: * 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: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@9388 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 6 ++++++ lib/webrick/config.rb | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index dd69d81b7..5a4fe1dfe 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Fri Oct 14 16:57:32 2005 GOTOU Yuuzou + + * 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 * parse.y (HEAPCNT): bison allocates indivisible size. diff --git a/lib/webrick/config.rb b/lib/webrick/config.rb index 36442e639..5897b977d 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", ... ] } -- cgit