PHP 8.2.31
Preview: webrick.rb Size: 6.70 KB
//proc/thread-self/root/opt/alt/ruby20/lib64/ruby/2.0.0/webrick.rb

##
# = 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:
#
#   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:
#
#   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:
#
#   server.mount_proc '/' do |req, res|
#     res.body = 'Hello, world!'
#   end
#
# Remember that <tt>server.mount_proc</tt> must <tt>server.start</tt>.
#
# == 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:
#
#   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:
#
#   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:
#
#   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:
#
#   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:
#
#   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:
#
#   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:
#
#   sockets = WEBrick::Utils.create_listeners nil, 80
#
# Then drop privileges:
#
#   WEBrick::Utils.su 'www'
#
# Then create a server that does not listen by default:
#
#   server = WEBrick::HTTPServer.new :DoNotListen => true, # ...
#
# Then overwrite the listening sockets with the port 80 sockets:
#
#   server.listeners.replace sockets
#
# === Logging
#
# WEBrick can separately log server operations and end-user access.  For
# server operations:
#
#   log_file = File.open '/var/log/webrick.log', 'a+'
#   log = WEBrick::Log.new log_file
#
# For user access logging:
#
#   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:
#
#   trap 'HUP' do log_file.reopen '/path/to/webrick.log', 'a+'
#
# == Copyright
#
# Author: IPR -- Internet Programming with Ruby -- writers
#
# Copyright (c) 2000 TAKAHASHI Masayoshi, GOTOU YUUZOU
# Copyright (c) 2002 Internet Programming with Ruby writers. All rights
# reserved.
#--
# $IPR: webrick.rb,v 1.12 2002/10/01 17:16:31 gotoyuzo Exp $

module WEBrick
end

require 'webrick/compat.rb'

require 'webrick/version.rb'
require 'webrick/config.rb'
require 'webrick/log.rb'
require 'webrick/server.rb'
require 'webrick/utils.rb'
require 'webrick/accesslog'

require 'webrick/htmlutils.rb'
require 'webrick/httputils.rb'
require 'webrick/cookie.rb'
require 'webrick/httpversion.rb'
require 'webrick/httpstatus.rb'
require 'webrick/httprequest.rb'
require 'webrick/httpresponse.rb'
require 'webrick/httpserver.rb'
require 'webrick/httpservlet.rb'
require 'webrick/httpauth.rb'

Directory Contents

Dirs: 30 × Files: 78

Name Size Perms Modified Actions
cgi DIR
- drwxr-xr-x 2024-03-03 22:43:33
Edit Download
date DIR
- drwxr-xr-x 2024-03-03 22:43:33
Edit Download
digest DIR
- drwxr-xr-x 2024-03-03 22:43:33
Edit Download
dl DIR
- drwxr-xr-x 2024-03-03 22:43:33
Edit Download
drb DIR
- drwxr-xr-x 2024-03-03 22:43:33
Edit Download
fiddle DIR
- drwxr-xr-x 2024-03-03 22:43:33
Edit Download
irb DIR
- drwxr-xr-x 2024-03-03 22:43:33
Edit Download
json DIR
- drwxr-xr-x 2024-03-03 22:43:37
Edit Download
matrix DIR
- drwxr-xr-x 2024-03-03 22:43:33
Edit Download
net DIR
- drwxr-xr-x 2024-03-03 22:43:33
Edit Download
openssl DIR
- drwxr-xr-x 2024-03-03 22:43:33
Edit Download
optparse DIR
- drwxr-xr-x 2024-03-03 22:43:33
Edit Download
psych DIR
- drwxr-xr-x 2024-03-03 22:43:38
Edit Download
racc DIR
- drwxr-xr-x 2024-03-03 22:43:33
Edit Download
rake DIR
- drwxr-xr-x 2024-03-03 22:53:08
Edit Download
rbconfig DIR
- drwxr-xr-x 2024-03-03 22:43:42
Edit Download
rdoc DIR
- drwxr-xr-x 2024-03-03 22:43:41
Edit Download
rexml DIR
- drwxr-xr-x 2024-03-03 22:43:33
Edit Download
rinda DIR
- drwxr-xr-x 2024-03-03 22:43:33
Edit Download
ripper DIR
- drwxr-xr-x 2024-03-03 22:43:33
Edit Download
rss DIR
- drwxr-xr-x 2024-03-03 22:43:33
Edit Download
rubygems DIR
- drwxr-xr-x 2024-03-03 22:43:42
Edit Download
shell DIR
- drwxr-xr-x 2024-03-03 22:43:33
Edit Download
syslog DIR
- drwxr-xr-x 2024-03-03 22:43:33
Edit Download
test DIR
- drwxr-xr-x 2024-03-03 22:43:33
Edit Download
uri DIR
- drwxr-xr-x 2024-03-03 22:43:33
Edit Download
webrick DIR
- drwxr-xr-x 2024-03-03 22:43:33
Edit Download
- drwxr-xr-x 2024-03-03 22:43:38
Edit Download
xmlrpc DIR
- drwxr-xr-x 2024-03-03 22:43:33
Edit Download
yaml DIR
- drwxr-xr-x 2024-03-03 22:43:33
Edit Download
3.31 KB lrw-r--r-- 2013-02-24 05:06:42
Edit Download
2.63 KB lrw-r--r-- 2009-10-02 10:45:39
Edit Download
17.94 KB lrw-r--r-- 2012-07-18 03:56:58
Edit Download
9.39 KB lrw-r--r-- 2012-11-30 05:06:45
Edit Download
7.22 KB lrw-r--r-- 2011-07-23 12:14:43
Edit Download
380 B lrw-r--r-- 2009-08-16 15:34:35
Edit Download
81.32 KB lrw-r--r-- 2014-09-17 05:56:35
Edit Download
946 B lrw-r--r-- 2023-07-26 14:09:00
Edit Download
28.90 KB lrw-r--r-- 2013-02-02 05:04:54
Edit Download
9.78 KB lrw-r--r-- 2014-04-30 07:45:49
Edit Download
2.24 KB lrw-r--r-- 2023-07-26 14:09:00
Edit Download
280 B lrw-r--r-- 2023-07-26 14:09:00
Edit Download
19 B lrw-r--r-- 2009-10-02 10:45:39
Edit Download
3.80 KB lrw-r--r-- 2011-05-19 00:07:25
Edit Download
6.44 KB lrw-r--r-- 2013-02-04 02:50:20
Edit Download
26.08 KB lrw-r--r-- 2014-09-03 04:42:39
Edit Download
2.14 KB lrw-r--r-- 2023-07-26 14:09:00
Edit Download
1.25 KB lrw-r--r-- 2023-07-26 14:09:00
Edit Download
46.35 KB lrw-r--r-- 2014-10-16 07:23:46
Edit Download
2.08 KB lrw-r--r-- 2012-09-20 07:14:54
Edit Download
7.56 KB lrw-r--r-- 2013-01-04 02:52:54
Edit Download
15.38 KB lrw-r--r-- 2013-12-24 15:46:01
Edit Download
8.86 KB lrw-r--r-- 2014-07-07 03:55:25
Edit Download
26.17 KB lrw-r--r-- 2013-02-23 04:03:59
Edit Download
20.03 KB lrw-r--r-- 2013-02-05 15:57:19
Edit Download
1.74 KB lrw-r--r-- 2023-07-26 14:09:00
Edit Download
5.74 KB lrw-r--r-- 2023-07-26 14:09:00
Edit Download
20.96 KB lrw-r--r-- 2013-07-13 15:16:09
Edit Download
6.52 KB lrw-r--r-- 2011-08-26 22:22:37
Edit Download
45.02 KB lrw-r--r-- 2013-02-05 05:43:36
Edit Download
78.19 KB lrw-r--r-- 2023-07-26 14:06:15
Edit Download
6.93 KB lrw-r--r-- 2012-11-16 16:55:29
Edit Download
2.00 KB lrw-r--r-- 2013-02-24 04:49:04
Edit Download
5.71 KB lrw-r--r-- 2012-08-21 13:03:30
Edit Download
23.66 KB lrw-r--r-- 2014-02-16 17:02:51
Edit Download
21.17 KB lrw-r--r-- 2013-01-13 04:40:15
Edit Download
528 B lrw-r--r-- 2023-07-26 14:09:00
Edit Download
51.27 KB lrw-r--r-- 2014-02-19 16:38:03
Edit Download
7.64 KB lrw-r--r-- 2012-10-28 21:20:10
Edit Download
15.30 KB lrw-r--r-- 2023-07-26 14:09:00
Edit Download
13.14 KB lrw-r--r-- 2012-08-15 11:50:01
Edit Download
9.63 KB lrw-r--r-- 2011-08-02 15:25:59
Edit Download
13.98 KB lrw-r--r-- 2013-01-13 05:07:08
Edit Download
205 B lrw-r--r-- 2009-10-02 10:45:39
Edit Download
4.29 KB lrw-r--r-- 2013-02-03 00:38:46
Edit Download
14.85 KB lrw-r--r-- 2012-11-11 04:23:04
Edit Download
9.90 KB lrw-r--r-- 2023-07-26 14:09:00
Edit Download
2.07 KB lrw-r--r-- 2012-11-29 19:16:46
Edit Download
308 B lrw-r--r-- 2009-09-24 00:42:23
Edit Download
4.88 KB lrw-r--r-- 2013-02-19 05:06:36
Edit Download
1.73 KB lrw-r--r-- 2013-04-03 17:27:19
Edit Download
61.45 KB lrw-r--r-- 2015-06-01 15:13:01
Edit Download
2.53 KB lrw-r--r-- 2023-07-26 14:09:00
Edit Download
2.84 KB lrw-r--r-- 2011-05-11 10:22:16
Edit Download
27.53 KB lrw-r--r-- 2023-07-26 14:06:15
Edit Download
23.52 KB lrw-r--r-- 2011-11-05 07:37:47
Edit Download
8.56 KB lrw-r--r-- 2012-09-13 13:01:23
Edit Download
17.32 KB lrw-r--r-- 2012-11-24 18:51:45
Edit Download
10.30 KB lrw-r--r-- 2012-12-05 02:55:07
Edit Download
5.94 KB lrw-r--r-- 2012-11-09 06:28:00
Edit Download
4.02 KB lrw-r--r-- 2011-05-18 14:09:38
Edit Download
25.76 KB lrw-r--r-- 2023-07-26 14:09:00
Edit Download
7.26 KB lrw-r--r-- 2012-12-23 10:18:58
Edit Download
10.15 KB lrw-r--r-- 2013-10-09 16:11:16
Edit Download
6.94 KB lrw-r--r-- 2014-02-09 16:07:41
Edit Download
3.38 KB lrw-r--r-- 2011-06-29 03:09:34
Edit Download
21.09 KB lrw-r--r-- 2013-10-09 15:07:45
Edit Download
3.16 KB lrw-r--r-- 2013-04-14 15:20:33
Edit Download
4.15 KB lrw-r--r-- 2012-12-12 12:40:51
Edit Download
6.54 KB lrw-r--r-- 2013-02-04 17:59:52
Edit Download
6.79 KB lrw-r--r-- 2009-03-06 04:23:05
Edit Download
268 B lrw-r--r-- 2009-10-02 10:45:39
Edit Download
8.34 KB lrw-r--r-- 2012-08-03 08:23:18
Edit Download
3.07 KB lrw-r--r-- 2011-05-13 20:03:21
Edit Download
3.23 KB lrw-r--r-- 2012-12-02 07:57:45
Edit Download
6.70 KB lrw-r--r-- 2012-11-07 06:49:57
Edit Download
8.49 KB lrw-r--r-- 2012-09-13 02:24:08
Edit Download
2.30 KB lrw-r--r-- 2013-05-19 19:01:43
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).