X7ROOT File Manager
Current Path:
/opt/alt/ruby21/lib64/ruby/2.1.0
opt
/
alt
/
ruby21
/
lib64
/
ruby
/
2.1.0
/
ðŸ“
..
📄
English.rb
(6.44 KB)
📄
abbrev.rb
(3.31 KB)
📄
base64.rb
(2.63 KB)
📄
benchmark.rb
(17.95 KB)
ðŸ“
cgi
📄
cgi.rb
(9.84 KB)
📄
cmath.rb
(8.93 KB)
📄
complex.rb
(380 B)
📄
csv.rb
(81.68 KB)
ðŸ“
date
📄
date.rb
(946 B)
📄
debug.rb
(29.08 KB)
📄
delegate.rb
(11.13 KB)
ðŸ“
digest
📄
digest.rb
(2.34 KB)
ðŸ“
dl
📄
dl.rb
(280 B)
ðŸ“
drb
📄
drb.rb
(19 B)
📄
e2mmap.rb
(3.89 KB)
📄
erb.rb
(26.07 KB)
📄
expect.rb
(2.14 KB)
ðŸ“
fiddle
📄
fiddle.rb
(1.65 KB)
📄
fileutils.rb
(47.17 KB)
📄
find.rb
(2.36 KB)
📄
forwardable.rb
(7.86 KB)
📄
getoptlong.rb
(15.38 KB)
📄
gserver.rb
(8.86 KB)
ðŸ“
io
📄
ipaddr.rb
(17.05 KB)
ðŸ“
irb
📄
irb.rb
(20.03 KB)
ðŸ“
json
📄
json.rb
(1.74 KB)
📄
kconv.rb
(5.74 KB)
📄
logger.rb
(22.37 KB)
📄
mathn.rb
(6.52 KB)
ðŸ“
matrix
📄
matrix.rb
(45.43 KB)
📄
mkmf.rb
(80.5 KB)
📄
monitor.rb
(6.93 KB)
📄
mutex_m.rb
(2 KB)
ðŸ“
net
📄
observer.rb
(5.81 KB)
📄
open-uri.rb
(24.27 KB)
📄
open3.rb
(20.37 KB)
ðŸ“
openssl
📄
openssl.rb
(528 B)
ðŸ“
optparse
📄
optparse.rb
(50.8 KB)
📄
ostruct.rb
(7.7 KB)
📄
pathname.rb
(15.3 KB)
📄
pp.rb
(14.1 KB)
📄
prettyprint.rb
(16.33 KB)
📄
prime.rb
(13.2 KB)
📄
profile.rb
(205 B)
📄
profiler.rb
(4.51 KB)
📄
pstore.rb
(14.85 KB)
ðŸ“
psych
📄
psych.rb
(14.88 KB)
ðŸ“
racc
ðŸ“
rake
📄
rake.rb
(2.12 KB)
📄
rational.rb
(308 B)
ðŸ“
rbconfig
ðŸ“
rdoc
📄
rdoc.rb
(4.92 KB)
📄
resolv-replace.rb
(1.73 KB)
📄
resolv.rb
(72.31 KB)
ðŸ“
rexml
ðŸ“
rinda
ðŸ“
ripper
📄
ripper.rb
(2.53 KB)
ðŸ“
rss
📄
rss.rb
(2.84 KB)
ðŸ“
rubygems
📄
rubygems.rb
(30.97 KB)
📄
scanf.rb
(23.54 KB)
📄
securerandom.rb
(8.49 KB)
📄
set.rb
(18.7 KB)
ðŸ“
shell
📄
shell.rb
(10.3 KB)
📄
shellwords.rb
(5.94 KB)
📄
singleton.rb
(4.02 KB)
📄
socket.rb
(25.6 KB)
📄
sync.rb
(7.25 KB)
ðŸ“
syslog
📄
tempfile.rb
(11.4 KB)
ðŸ“
test
📄
thwait.rb
(3.38 KB)
📄
time.rb
(21.32 KB)
📄
timeout.rb
(3.7 KB)
📄
tmpdir.rb
(4.15 KB)
📄
tracer.rb
(6.4 KB)
📄
tsort.rb
(14.14 KB)
📄
ubygems.rb
(268 B)
📄
un.rb
(8.87 KB)
ðŸ“
uri
📄
uri.rb
(3.07 KB)
📄
weakref.rb
(3.23 KB)
ðŸ“
webrick
📄
webrick.rb
(6.69 KB)
ðŸ“
x86_64-linux
ðŸ“
xmlrpc
📄
xmlrpc.rb
(8.49 KB)
ðŸ“
yaml
📄
yaml.rb
(2.31 KB)
Editing: 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 +server.mount_proc+ must precede +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: # # 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'
Upload File
Create Folder