The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Plack::Middleware::Proxy::RewriteLocation - Rewrites redirect headers

SYNOPSIS

  use Plack::Builder;
  use Plack::App::Proxy;

  builder {
      enable "Proxy::RewriteLocation";
      Plack::App::Proxy->new(host => "http://10.0.1.2:8080/")->to_app;
  };

DESCRIPTION

Plack::Middleware::Proxy::RewriteLocation rewrites the Location header in the response when the remote host redirects using its own headers, like mod_proxy's ProxyPassReverse option.

AUTHOR

Tatsuhiko Miyagawa

SEE ALSO

Plack::App::Proxy