NAME
Plack::Middleware::Reproxy::Furl - Use Furl To Reproxy
SYNOPSIS
# in your app.psgi
use
Plack::Builder;
builder {
enable
'Reproxy::Furl'
;
$your_real_app
;
}
builder {
enable
'Reproxy::Furl'
,
furl
=> Furl::HTTP->new(
agent
=>
"Blah"
);
$your_real_app
;
}