RAA - webrick-fcgi

webrick-fcgi / 0.1.0

Short description: WEBrick compatible interface to the FCGI library
Category: Library/WWW
Status: alpha
Created: 2004-02-14 01:22:27 GMT
Last update: 2004-02-14 01:22:26 GMT
Owner: aredridel (Projects of this owner)
Homepage: http://theinternetco.net/projects/ruby/webrick-fcgi
Download: http://theinternetco.net/projects/ruby/webrick-fcgi/
License: Ruby's
Dependency:
None
Description:

An example:

require 'webrick/fcgi'

include WEBrick

s = FCGIServer.new(
:DocumentRoot => File.dirname(__FILE__) + '/test'
)

## mount subdirectories
s.mount("/tmp", HTTPServlet::FileHandler, "/tmp")
trap("INT"){ s.shutdown }
s.start

Edit this project (for project owner)

back to RAA top