Centos – configuring FastCGI on CentOS with PHP

centosfastcgiPHP

So I was following this tutorial, but then I was stuck because when running the code:

# yum install spawn-fcgi

it says there is no package. I am using Nginx.
Please suggest

Best Answer

Turn on EPEL repo:

 rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm

then install spawn-fcgi:

 yum install spawn-fcgi
Related Topic