NAME
Apache::ProxyPassThru - Skeleton for vanilla proxy
SYNOPSIS
#httpd.conf or some such
PerlTransHandler Apache::ProxyPassThru
PerlSetVar ProxyPassThru_DumpHeaders 1
DESCRIPTION
This module uses libwww-perl as it's web client, feeding the response back into the Apache API request_rec structure. `PerlHandler' will only be invoked if the request is a proxy request, otherwise, your normal server configuration will handle the request.
If used with the Apache::DumpHeaders module it lets you view the headers from another site you are accessing.
PARAMETERS
This module is configured with PerlSetVar's.
ProxyPassThru_DumpHeaders
If this is set to a true value we'll set r->notes("DumpHeaders") to "proxypassthru" to get the request logged in the log. This is usually what you want.
Makes it easy to have Apache::DumpHeaders only dump headers from your proxied requests.
SUPPORT
The latest version of this module can be found at CPAN and at http://develooper.com/code/Apache::DumpHeaders/. Send questions and suggestions to the modperl mailinglist (see http://perl.apache.org/ for information) or directly to the author (see below).
SEE ALSO
mod_perl(3), Apache(3), LWP::UserAgent(3)
AUTHOR
Ask Bjoern Hansen <ask@develooper.com>.
Originally by Doug MacEachern.