summaryrefslogtreecommitdiffstats
path: root/sample/webrick/httpd.rb
diff options
context:
space:
mode:
authorgotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-01-07 12:22:19 +0000
committergotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-01-07 12:22:19 +0000
commit7ea3185d13176255c24de6f3221525e05cf83ebf (patch)
treed4ff408c0efe50815ed9c7d6561299a7a8a2c9f7 /sample/webrick/httpd.rb
parent6be79c5edb742ba3587f7fc92e6d79d8cb34942f (diff)
downloadruby-7ea3185d13176255c24de6f3221525e05cf83ebf.tar.gz
ruby-7ea3185d13176255c24de6f3221525e05cf83ebf.tar.xz
ruby-7ea3185d13176255c24de6f3221525e05cf83ebf.zip
* sample/webrick/*: new files.
* MANIFEST: add sample/webrick/* git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5403 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'sample/webrick/httpd.rb')
-rw-r--r--sample/webrick/httpd.rb23
1 files changed, 23 insertions, 0 deletions
diff --git a/sample/webrick/httpd.rb b/sample/webrick/httpd.rb
new file mode 100644
index 000000000..b0edf4758
--- /dev/null
+++ b/sample/webrick/httpd.rb
@@ -0,0 +1,23 @@
+require "webrick"
+
+httpd = WEBrick::HTTPServer.new(
+ :DocumentRoot => File::dirname(__FILE__),
+ :Port => 10080,
+ :Logger => WEBrick::Log.new($stderr, WEBrick::Log::DEBUG),
+ :AccessLog => [
+ [ $stderr, WEBrick::AccessLog::COMMON_LOG_FORMAT ],
+ [ $stderr, WEBrick::AccessLog::REFERER_LOG_FORMAT ],
+ [ $stderr, WEBrick::AccessLog::AGENT_LOG_FORMAT ],
+ ],
+ :CGIPathEnv => ENV["PATH"] # PATH environment variable for CGI.
+)
+
+require "./hello"
+httpd.mount("/hello", HelloServlet)
+
+require "./demo-servlet"
+httpd.mount("/urlencoded", DemoServlet, "application/x-www-form-urlencoded")
+httpd.mount("/multipart", DemoServlet, "multipart/form-data")
+
+trap(:INT){ httpd.shutdown }
+httpd.start