WEBrick::HTTPServer config

M

Mike Houghton

I've copied some basic code for an HTTPS server

===============
require 'webrick'
require 'webrick/https'

httpserver = WEBrick::HTTPServer.new(
:port => 2000,
:DocumentRoot => Dir::pwd + "/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
 
E

Eric Hodel

I've copied some basic code for an HTTPS server

===============
require 'webrick'
require 'webrick/https'

httpserver = WEBrick::HTTPServer.new(
:port => 2000,
:DocumentRoot => Dir::pwd + "/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.

WEBrick::Config has a bunch more.
 
T

Timeshifter

Did you check: http://microjet.ath.cx/webrickguide/html/html_webrick.html
& http://microjet.ath.cx/webrickguide/html/Server_Configuration.html
in specific?

Cheers,

Patrick.
--
I've copied some basic code for an HTTPS server
===============
require 'webrick'
require 'webrick/https'
httpserver = WEBrick::HTTPServer.new(
:port => 2000,
:DocumentRoot => Dir::pwd + "/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.

WEBrick::Config has a bunch more.- Tekst uit oorspronkelijk bericht niet weergeven -

- Tekst uit oorspronkelijk bericht weergeven -
 
M

Mike Houghton

Patrick said:

Thanks for the replies guys.

I've got a little further but still struggling (Ruby newbie!)
I've created an SSL key (key.pem) and certificate (cert.pem) using
OpenSSL and have incorporated them into ruby like this

================
pkey = cert = cert_name = nil
begin

pkey =
OpenSSL::pKey::RSA.new(File.read("/home/mhoughton/sslcert/key.pem"))

cert =
OpenSSL::X509::Certificate.new(File.read("/home/mhoughton/sslcert/cert.pem"))
rescue
$stderr.puts "Switching to use self-signed certificate"
cert_name = [ ["C","JP"], ["O","WEBrick.Org"], ["CN", "WWW"] ]
end


s=WEBrick::HTTPServer.new(

:port => 8080,
:Logger => WEBrick::Log::new($stderr, WEBrick::Log::DEBUG),
:DocumentRoot => "/usr/local/webrick/htdocs",
:SSLEnable => true,
#:SSLVerifyClient => OpenSSL::SSL::VERIFY_NONE,
:SSLCertificate => cert,
:SSLPrivateKey => pkey,
:SSLCertName => cert_name
)
s.start
==============

The key and certificate files are present(!) and can be read using
File.read()
but the code bombs out on RSA.new() ( or on Certificate.new if I swap
the order)
and the rescue block is executed and the created HTTPServer doesn't use
the supplied key and certificate.

What am I doing wrong?

Thanks

Mike
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,065
Latest member
OrderGreenAcreCBD

Latest Threads

Top