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

Log in
Name

Password

 
 
FrontPage » Setup_School_Servers »

FastCgi

# 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?

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