openbsd-ports/www/ap2-mod_fcgid/pkg/MESSAGE
merdely 58dc5be515 mod_fcgid has a new process management strategy, which concentrates on
reducing the number of fastcgi server, and kick out the corrupt fastcgi
server as soon as possible.

From Paul Irofti
"sounds good to me" todd@
2007-10-03 18:19:47 +00:00

17 lines
451 B
Plaintext

Before you can use ap2-mod_fcgid, you need to enable it on your
Apache2 configuration.
Edit ${SYSCONFDIR}/apache2/httpd2.conf and add the following line:
LoadModule perl_module ${PREFIX}/lib/apache2/mod_fcgid.so
An example of mod_fcgid's use:
<Location /fcgid>
SetHandler fcgid-script
Options ExecCGI
Allow from all
</Location>
Where /var/apache2/htdocs/fcgid/ contains fastcgi scripts.
Restart your httpd2 for changes to make effect.