Hi i just installed fastCGI with this guide is quite short and now i want to undo all that changes.. can some one guide me with the steps to do it?
This is the install:
mkdir code
cd code
wget
http://www.fastcgi.com/dist/mod_fastcgi-current.tar.gz
tar -zxvf mod_fastcgi-current.tar.gz
cd mod_fastcgi-2.4.6/
cp Makefile.AP2 Makefile
make top_dir=/usr/lib/httpd
make install top_dir=/usr/lib/httpd
vi /etc/httpd/conf.d/mod_fastcgi.conf
(add this lines on it)
User apache
Group apache
LoadModule fastcgi_module modules/mod_fastcgi.so
# FastCGIWrapper on
FastCgiIpcDir /tmp/fcgi_ipc/
AddHandler fastcgi-script .fcgi
FastCGIConfig -autoUpdate -idle-timeout 120 -killInterval 3600 -maxClassProcesses 6 -maxProcesses 15
So far i leave this file empty so the module is not loaded.. bou i like to remove it completely from my system
Thanks