Hi, oxman <no / spam.org> wrote: > I want FastCGI work like PHP. > > For example : > > - test.fcgi - > <p>Hello <%= "oxman" %></p> Well, that looks like 'mod_ruby' or ERB - and that's not something special to fcgi. With fcgi you can speed up your web application, as that takes care of handling your connections withoud the need to start a new ruby instance with every request. So it's usually a replacement for the built-in CGI class. Regards, Dominik.