Installing mod_perl
Design of mod_perl
mod_perl Handlers
Running CGI Scripts with mod_perl
Server Side Includes with mod_perl
<Perl> Sections
Apache:: Modules
The Perl API
mod_perl is an Apache module that embeds the Perl interpreter directly into Apache. There are many advantages to mod_perl:
Standard CGI programs can be converted to run significantly faster with little alteration under mod_perl.
Databases can be accessed much more efficiently under mod_perl.
You can write custom Apache modules and handlers easily, using Perl instead of C. mod_perl gives you access to all Apache request stages.
Perl code can be embedded into Apache configuration files.
Perl can be used for server-side includes.
You have access to the many tools written for mod_perl servers, such as Mason and AxKit.
If you already have Apache installed on your machine, you will have to rebuild it with mod_perl. You can get the source and documentation for mod_perl from http://perl.apache.org/. If there isn't already an Apache httpd in the Apache source tree, you must build one. Then build mod_perl as directed in the INSTALL file for the mod_perl distribution.
As we've mentioned, mod_perl allows you to hook in Perl modules as handlers for various stages of a request. By default, however, the only callback hook that is enabled is PerlHandler, which is the one that processes content (i.e., a CGI document). If you want to use other hooks—for example, to extend Apache's logging facilities via the PerlLogHandler directive; you need to specify it at build time as directed in the INSTALL file. For example:
% perl Makefile.PL PERL_LOG=1
The mod_perl Makefile replaces the httpd in the Apache source tree with a Perl-enabled one. When you install mod_perl, it installs not only the new httpd in your system area, but also several Perl modules, including Apache::Registry.
Copyright © 2003 O'Reilly & Associates. All rights reserved.