Type:
Module
Constants:
NullReader : Object.new # :nodoc:
FakeProxyURI : Object.new # :nodoc:
CR : "\x0d"
LF : "\x0a"
CRLF : "\x0d\x0a"
VERSION : "1.3.1"

The WEBrick version

WEB server toolkit.

WEBrick is an HTTP server toolkit that can be configured as an HTTPS server, a proxy server, and a virtual-host server. WEBrick features complete logging of both server operations and HTTP access. WEBrick supports both basic and digest authentication in addition to algorithms not in RFC 2617.

A WEBrick server can be composed of multiple WEBrick servers or servlets to provide differing behavior on a per-host or per-path basis. WEBrick includes servlets for handling CGI scripts, ERb pages, ruby blocks and directory listings.

WEBrick also includes tools for daemonizing a process and starting a process at a higher privilege level and dropping permissions.

Starting an HTTP server

To create a new WEBrick::HTTPServer that will listen to connections on port 8000 and serve documents from the current user's public_html folder:

1
2
3
4
require 'webrick'
 
root = File.expand_path '~/public_html'
server = WEBrick::HTTPServer.new :Port => 8000, :DocumentRoot => root

To run the server you will need to provide a suitable shutdown hook as starting the server blocks the current thread:

1
2
3
trap 'INT' do server.shutdown end
 
server.start

Custom Behavior

The easiest way to have a server perform custom operations is through WEBrick::HTTPServer#mount_proc. The block given will be called with a WEBrick::HTTPRequest with request info and a WEBrick::HTTPResponse which must be filled in appropriately:

1
2
3
server.mount_proc '/' do |req, res|
  res.body = 'Hello, world!'
end

Remember that server.mount_proc must server.start.

Servlets

Advanced custom behavior can be obtained through mounting a subclass of WEBrick::HTTPServlet::AbstractServlet. Servlets provide more modularity when writing an HTTP server than mount_proc allows. Here is a simple servlet:

1
2
3
4
5
6
7
8
9
class Simple < WEBrick::HTTPServlet::AbstractServlet
  def do_GET request, response
    status, content_type, body = do_stuff_with request
 
    response.status = 200
    response['Content-Type'] = 'text/plain'
    response.body = 'Hello, World!'
  end
end

To initialize the servlet you mount it on the server:

1
server.mount '/simple', Simple

See WEBrick::HTTPServlet::AbstractServlet for more details.

Virtual Hosts

A server can act as a virtual host for multiple host names. After creating the listening host, additional hosts that do not listen can be created and attached as virtual hosts:

1
2
3
4
5
6
7
server = WEBrick::HTTPServer.new # ...
 
vhost = WEBrick::HTTPServer.new :ServerName => 'vhost.example',
                                :DoNotListen => true, # ...
vhost.mount '/', ...
 
server.virtual_host vhost

If no :DocumentRoot is provided and no servlets or procs are mounted on the main server it will return 404 for all URLs.

HTTPS

To create an HTTPS server you only need to enable SSL and provide an SSL certificate name:

1
2
3
4
5
6
7
8
9
10
require 'webrick'
require 'webrick/https'
 
cert_name = [
  %w[CN localhost],
]
 
server = WEBrick::HTTPServer.new(:Port => 8000,
                                 :SSLEnable => true,
                                 :SSLCertName => cert_name)

This will start the server with a self-generated self-signed certificate. The certificate will be changed every time the server is restarted.

To create a server with a pre-determined key and certificate you can provide them:

1
2
3
4
5
6
7
8
9
10
11
require 'webrick'
require 'webrick/https'
require 'openssl'
 
cert = OpenSSL::X509::Certificate.new File.read '/path/to/cert.pem'
pkey = OpenSSL::PKey::RSA.new File.read '/path/to/pkey.pem'
 
server = WEBrick::HTTPServer.new(:Port => 8000,
                                 :SSLEnable => true,
                                 :SSLCertificate => cert,
                                 :SSLPrivateKey => pkey)

Proxy Server

WEBrick can act as a proxy server:

1
2
3
4
5
6
require 'webrick'
require 'webrick/httpproxy'
 
proxy = WEBrick::HTTPProxyServer.new :Port => 8000
 
trap 'INT' do proxy.shutdown end

See WEBrick::HTTPProxy for further details including modifying proxied responses.

Basic and Digest authentication

WEBrick provides both Basic and Digest authentication for regular and proxy servers. See WEBrick::HTTPAuth, WEBrick::HTTPAuth::BasicAuth and WEBrick::HTTPAuth::DigestAuth.

WEBrick as a Production Web Server

WEBrick can be run as a production server for small loads.

Daemonizing

To start a WEBrick server as a daemon simple run WEBrick::Daemon.start before starting the server.

Dropping Permissions

WEBrick can be started as one user to gain permission to bind to port 80 or 443 for serving HTTP or HTTPS traffic then can drop these permissions for regular operation. To listen on all interfaces for HTTP traffic:

1
sockets = WEBrick::Utils.create_listeners nil, 80

Then drop privileges:

1
WEBrick::Utils.su 'www'

Then create a server that does not listen by default:

1
server = WEBrick::HTTPServer.new :DoNotListen => true, # ...

Then overwrite the listening sockets with the port 80 sockets:

1
server.listeners.replace sockets

Logging

WEBrick can separately log server operations and end-user access. For server operations:

1
2
log_file = File.open '/var/log/webrick.log', 'a+'
log = WEBrick::Log.new log_file

For user access logging:

1
2
3
4
5
access_log = [
  [log_file, WEBrick::AccessLog::COMBINED_LOG_FORMAT],
]
 
server = WEBrick::HTTPServer.new :Logger => log, :AccessLog => access_log

See WEBrick::AccessLog for further log formats.

Log Rotation

To rotate logs in WEBrick on a HUP signal (like syslogd can send), open the log file in 'a+' mode (as above) and trap 'HUP' to reopen the log file:

1
trap 'HUP' do log_file.reopen '/path/to/webrick.log', 'a+'

Copyright

Author: IPR – Internet Programming with Ruby – writers

Copyright © 2000 TAKAHASHI Masayoshi, GOTOU YUUZOU Copyright © 2002 Internet Programming with Ruby writers. All rights reserved.

new
  • References/Ruby on Rails/Ruby/Classes/WEBrick/WEBrick::HTTPVersion

new(version) Class Public methods Creates a new

2025-01-10 15:47:30
error?
  • References/Ruby on Rails/Ruby/Classes/WEBrick/WEBrick::HTTPStatus

error?(code) Class Public methods Is code an error status?

2025-01-10 15:47:30
format
  • References/Ruby on Rails/Ruby/Classes/WEBrick/WEBrick::AccessLog

format(format_string, params) Instance Public methods Formats params

2025-01-10 15:47:30
server_error?
  • References/Ruby on Rails/Ruby/Classes/WEBrick/WEBrick::HTTPStatus

server_error?(code) Class Public methods Is code a server error

2025-01-10 15:47:30
make_passwd
  • References/Ruby on Rails/Ruby/Classes/WEBrick/WEBrick::HTTPAuth/WEBrick::HTTPAuth::BasicAuth

make_passwd(realm, user, pass) Class Public methods Used by

2025-01-10 15:47:30
[]
  • References/Ruby on Rails/Ruby/Classes/WEBrick/WEBrick::HTTPRequest

[](header_name) Instance Public methods Retrieves header_name

2025-01-10 15:47:30
unescape
  • References/Ruby on Rails/Ruby/Classes/WEBrick/WEBrick::HTTPUtils

unescape(str) Instance Public methods Unescapes HTTP reserved and unwise characters

2025-01-10 15:47:30
reason_phrase
  • References/Ruby on Rails/Ruby/Classes/WEBrick/WEBrick::HTTPStatus

reason_phrase(code) Class Public methods Returns the description corresponding

2025-01-10 15:47:30
basic_auth
  • References/Ruby on Rails/Ruby/Classes/WEBrick/WEBrick::HTTPAuth

basic_auth(req, res, realm) Instance Public methods Simple wrapper for providing

2025-01-10 15:47:30
service
  • References/Ruby on Rails/Ruby/Classes/WEBrick/WEBrick::HTTPServlet/WEBrick::HTTPServlet::AbstractServlet

service(req, res) Instance Public methods Dispatches to a do_ method

2025-01-10 15:47:30