Plack::Middleware::IIS7KeepAliveFix - fixes buffer being cut off on redirect when keep-alive is active on
Contents
Description
This middleware fixes buffer being cut off on redirect when keep-alive is active on IIS7.
Name
Plack::Middleware::IIS7KeepAliveFix - fixes buffer being cut off on redirect when keep-alive is active on
IIS.
Synopsis
# in your app.psgi
use Plack::Builder;
builder {
enable "IIS7KeepAliveFix";
$app;
};
# Or from the command line
plackup -s FCGI -e 'enable "IIS7KeepAliveFix"' /path/to/app.psgi
