Fedora16にFcgi環境構築

いつも使ってるCentOS版のメモ(CentOS5.5にfcgi環境を作る)とほぼ変わらないけど、fcgiがyumでインストールできたので、メモ。

yum install fcgi
yum install httpd-devel

cd /usr/local/src
wget http://www.fastcgi.com/dist/mod_fastcgi-2.4.6.tar.gz
tar zxvf mod_fastcgi-2.4.6.tar.gz
cd mod_fastcgi-2.4.6
/usr/sbin/apxs -n mod_fastcgi -i -a -c mod_fastcgi.c fcgi_buf.c fcgi_config.c fcgi_pm.c fcgi_protocol.c fcgi_util.c

で、httpd.confを書き換え

#LoadModule mod_fastcgi_module /usr/lib64/httpd/modules/mod_fastcgi.so

LoadModule fastcgi_module modules/mod_fastcgi.so

で、Perlのモジュール入れて完了と。

cpanm FCGI