Internal Proxy

Presentation

LemonLDAP::NG provides a proxy that can replace the use of Apache mod_proxy. This proxy use LWP Perl module to relay HTTP request. It can inspect HTTP headers to replace on the fly the Location and Set-Cookie headers.

Main differences with mod_proxy:

Configuration

The configuration is done in Apache, in a virtual host.

For example, to proxy https://www.public.com to http://www.private.com:

<VirtualHost>
  ServerName www.public.com
 
  PerlModule Lemonldap::NG::Handler::Proxy
  SetHandler perl-script
  PerlHandler Lemonldap::NG::Handler::Proxy
 
  PerlSetVar LmProxyPass http://www.private.com/
  PerlSetVar LmLocationToReplace http://www.private.com/,https://www.public.com
  PerlSetVar LmCookieDomainToReplace private.com,public.com
</VirtualHost>

Parameters: