You are not logged in Log in Join
You are here: Home » Members » vernier » Debian » FastCgi

Log in
Name

Password

 
 

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>
&lt;Directory /etc/apache/fcgi>
   AddHandler fastcgi-script .fcgi
   AllowOverride none
   Options ExecCGI
   Order allow,deny
   Allow from all
&lt;/Directory>
</pre><pre>
FastCgiExternalServer /var/www/z -socket /var/lib/zope/fastcgi.soc -pass-header Authorization -appConnTimeout 0
</pre><pre>
Options ExecCGI
</pre><pre>
&lt;Location /z>
   SetHandler fastcgi-script
&lt;/Location>
</pre>