History for FastCgi
??changed:- # Include File for FastCgi in Apache Configuration # make sure you add the following line in the main **/etc/apache/httpd.conf** (or just add the following directly in **httpd.conf** right after loading all the modules including **fastcgi** module: # Include /etc/apache/fastcgi.conf # you may need to create a directory called **/var/www/z** because of some apache quirkyness ... anyone know for sure? <pre> <Directory /etc/apache/fcgi> AddHandler fastcgi-script .fcgi AllowOverride none Options ExecCGI Order allow,deny Allow from all </Directory> </pre><pre> FastCgiExternalServer /var/www/z -socket /var/lib/zope/fastcgi.soc -pass-header Authorization -appConnTimeout 0 </pre><pre> Options ExecCGI </pre><pre> <Location /z> SetHandler fastcgi-script </Location> </pre>