M
Mike Houghton
I've copied some basic code for an HTTPS server
===============
require 'webrick'
require 'webrick/https'
httpserver = WEBrick::HTTPServer.new(
ort => 2000,
ocumentRoot => Dir:wd + "/htdocs",
:SSLEnable => true,
:SSLVerifyClient => ::OpenSSL::SSL::VERIFY_NONE,
:SSLCertName => [ ["C","JP"], ["O","WEBrick.Org"], ["CN", "WWW"] ]
)
===============
My question is does anyone know the full set of parameters that can be
supplied to HTTPServer.new ?
I can't find anything the the documentation and google/websearch doesn't
give much.
Thanks
===============
require 'webrick'
require 'webrick/https'
httpserver = WEBrick::HTTPServer.new(
ort => 2000,
ocumentRoot => Dir:wd + "/htdocs",
:SSLEnable => true,
:SSLVerifyClient => ::OpenSSL::SSL::VERIFY_NONE,
:SSLCertName => [ ["C","JP"], ["O","WEBrick.Org"], ["CN", "WWW"] ]
)
===============
My question is does anyone know the full set of parameters that can be
supplied to HTTPServer.new ?
I can't find anything the the documentation and google/websearch doesn't
give much.
Thanks