summaryrefslogtreecommitdiff
path: root/sample/soap/exchange/httpd.rb
blob: ee8ab09f50234fdf334402806d2215c556b46775 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env ruby

require 'webrick'
require 'getopts'

getopts "", 'r:', 'p:8808'

s = WEBrick::HTTPServer.new(
  :BindAddress => "0.0.0.0",
  :Port => $OPT_p.to_i,
  :DocumentRoot => $OPT_r || ".",
  :CGIPathEnv => ENV['PATH']
)
trap(:INT){ s.shutdown }
s.start