Intro to Apache - ApacheCon 2005
Apache::PerlRun- CGI that works, don't want to tinker with it, but potentially bad code.
Alias /cgi-perl/ /usr/local/apache/cgi-bin/
| | |
<Location /cgi-perl>
SetHandler perl-script
PerlHandler Apache::PerlRun
Options +ExecCGI
PerlSendHeader On
</Location>
| | |
- Perhaps 2 or 3 times faster
- Perl in memory, but your code is not cached
|
|