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)
Mon Mar 24 06:46:46 -0700 2008
commit  f278ac2badf0c6e3a8f7c2572217cd38e7780f44
tree    64ca3db90058b4e7bbe4047bbaa6acf041a32f94
parent  5fb8170d45ed424e73c51ad58874c99beb2ced76
ebb / benchmark / cgi / fcgi-rack.rb
100755 9 lines (7 sloc) 0.234 kb
1
2
3
4
5
6
7
8
9
#!/usr/bin/env ruby
require 'rubygems'
require 'rack'
require File.dirname(__FILE__) + '/../application'
 
trap ('INT') { exit }
puts ("Starting FastCGI server at 0.0.0.0:9001")
Rack::Handler::FastCGI.run(SimpleApp.new, :Port => 9001)