Sophie

Sophie

distrib > Mandriva > 2006.0 > x86_64 > by-pkgid > 4fb2bf23211d5f27ae943c283575a23a > files > 219

ruby-doc-1.8.2-7.5.20060mdk.x86_64.rpm

#!/usr/bin/env ruby

require 'webrick'
require 'soap/property'

docroot = "."
port = 8808
if opt = SOAP::Property.loadproperty("samplehttpd.conf")
  docroot = opt["docroot"]
  port = Integer(opt["port"])
end

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