components/apache2-modules/mod_fcgid/fcgid.conf
author Mike Sullivan <Mike.Sullivan@Oracle.COM>
Mon, 11 Mar 2013 10:38:09 -0700
branchs11-update
changeset 2520 ceec631e74d1
parent 278 77b380ba9d84
permissions -rw-r--r--
Close of build 10.


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