The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Apache::PassHtml - print out the html file

SYNOPSIS

In the conf/access.conf file of your Apache installation add lines

        <Files *.html>
        SetHandler perl-script
        PerlHandler Apache::OutputChain Apache::MakeCapital Apache::PassHtml
        </Files>

DESCRIPTION

This is simple script to show the use of module Apache::OutputChain. It will pick up a html file and send it to the output, STDOUT. We assume that the output is tied either to Apache (by default), or some user-defined perl handler. We need to read and write to STDOUT in perl since Apache will not pass its output into perl handlers.

AUTHOR

(c) 1997--1998 Jan Pazdziora