= mod_fcgid =
 * https://httpd.apache.org/mod_fcgid/
mod_fcgid is a high performance alternative to mod_cgi or mod_cgid, which starts a sufficient number instances of the CGI program to handle concurrent requests, and these programs remain running to handle further incoming requests. 

{{{#!highlight bash
wget http://mirrors.up.pt/pub/apache//httpd/mod_fcgid/mod_fcgid-2.3.9.tar.bz2
tar xvif mod_fcgid-2.3.9.tar.bz2 
cd mod_fcgid-2.3.9
./configure.apxs 
make
make install
}}}