FastCGIインストール

httpd-develが必要
$ sudo yum install httpd-devel
FastCGIインストール
$ wget http://www.fastcgi.com/dist/fcgi-2.4.0.tar.gz
$ tar xfz fcgi-2.4.0.tar.gz
$ cd fcgi-2.4.0
$ ./configure; make
$ su
# make install

$ wget http://www.fastcgi.com/dist/mod_fastcgi-2.4.6.tar.gz
$ tar xfz mod_fastcgi-2.4.6.tar.gz
$ cd mod_fastcgi-2.4.6
$ cp Makefile.AP2 Makefile

$ make
make できない.ターゲットが見つかりませんと出る.

Makefileの書き方 - スキルアップ輪講 http://www.c.csce.kyushu-u.ac.jp/~seiichirou/wiki/index.php?makefile%a4%ce%bd%f1%a4%ad%ca%fd
というサイトによると,
Makefileのファイル名を指定する場合は
$ make -f Makefile
とします。ファイル名を指定しない場合は、“GNUmakefile”、“makefile”、“Makefile”の順に検索します。

"MakeFile"になってた..

# make install

httpd.conf に以下を加えてrestart.

LoadModule fastcgi_module modules/mod_fastcgi.so

設定の書き方
Zope Apache2 http://ns.jk.to/zwiki/apacheconf2
FastCgiExternalServer のパスは,存在しないディレクトリが望ましい.
DocumentRootと同じにする.