ry / ebb fork watch download tarball
public
Description: web server
Homepage: http://ebb.rubyforge.org
Clone URL: git://github.com/ry/ebb.git
ryah (author)
Thu Apr 10 13:42:29 -0700 2008
commit  e73fe87c9085b5ac4c8caf23f6d6ccc85f8933f6
tree    26b6795303e24c7d7422bf1babef682fea1242a9
parent  2e370e55784634965100f256d1c652d7cdd49cfe
ebb / benchmark / cgi / scgi-rack.rb
100755 10 lines (8 sloc) 0.256 kb
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env ruby
require 'rubygems'
require 'rack'
require 'rack/handler/scgi'
require File.dirname(__FILE__) + '/../application'
 
trap ('INT') { exit }
puts ("Starting SCGI server at 0.0.0.0:9001")
Rack::Handler::SCGI.run(SimpleApp.new, :Port => 9001)