[NANOWEB DOCUMENTATION]

NANOWEB, the aEGiS PHP web server

mod_fcgi

FastCGI is a method to run all your favorite scripting languages much faster, as the according interpreters are alwas kept in memory and just wait for a script to be passed from the webserver.
With mod_cgi a copy of the script interpreter needs to be run whenever a CGI is to be processed, which may be a bit slower than neccessary.
Just register your script extensions with the ParseExt directive as you did for mod_cgi, but now specify FCGI as the second argument and server name and port as args to mod_fcgi:
   ParseExt = phpf FCGI localhost:9000



NANOWEB, the aEGiS PHP web server