The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

NAME

Plack::Middleware::Reproxy::Furl - Use Furl To Reproxy

SYNOPSIS

# in your app.psgi
builder {
enable 'Reproxy::Furl';
$your_real_app;
}
builder {
enable 'Reproxy::Furl', furl => Furl::HTTP->new(agent => "Blah");
$your_real_app;
}