components/apache2-modules/mod_fcgid/fcgid.conf
author Drew Fisher <drew.fisher@oracle.com>
Tue, 14 Jun 2011 10:37:25 -0600
changeset 299 c599660d42b4
parent 278 77b380ba9d84
permissions -rw-r--r--
7054342 cssselect.py missing from B167 library/python-2/lxml-26 package causing AI installs to fail


<IfDefine 64bit>
LoadModule fcgid_module libexec/64/mod_fcgid.so
</IfDefine>
<IfDefine !64bit>
LoadModule fcgid_module libexec/mod_fcgid.so
</IfDefine>

<IfModule mod_fcgid.c>
FcgidProcessTableFile /var/run/apache2/2.2/fcgid_shm
FcgidIPCDir /var/run/apache2/2.2/fcgid.sock
AddHandler fcgid-script .fcgi
<Location /fcgid>
    SetHandler fcgid-script
    Options ExecCGI
    allow from all
</Location>
</IfModule>