I have nginx in front of ramaze which interfaces with ebb like:
Ramaze.start :adapter => :ebb, :host => '127.0.0.1', :port => 3010
There are a thousands of hosts that point to this server and all sorts
of weird requests getting thrown at it, but I want to do the same for
all requests, so I:
Ramaze::Route[/.*/] = '/index'
index just gets the host name from request.http_host and spits out a
template. It doesn't care about the request path, type or parameters.
The server has been using "thin" for a couple of months, but I'd like
to switch to ebb.
I'm not sure what request is causing it to die, if you want to send me
some debug code to print out the request structure I'd be happy to put
that in place.
thanks,
-joe