On 12-may-09, at 20:28, Daniel L. Miller wrote:

> Is there a tutorial on providing FastCGI services for Perl?


I'm not a Perl user; but AFAIK, a 'Hello World' app would look like  
this:

====
use FCGI;

while (FCGI::accept() >= 0) {
    print ("Content-Type: text/plain", "\n\n");
    print ("Hello World", "\n");
}
====

BTW, this is kind of an off-topic for this mailing list.

--
Octality
http://www.octality.com/

_______________________________________________
Cherokee mailing list
[email protected]
http://lists.octality.com/listinfo/cherokee

Reply via email to