|
NAMEPlack::Middleware::Proxy::LoadBalancer - Simple load balancer SYNOPSIS use Plack::Builder;
use Plack::App::Proxy;
builder {
enable "Proxy::LoadBalancer", backends => ['http://10.0.0.1:8080', 'http://10.0.0.1:8081'];
Plack::App::Proxy->new()->to_app;
};
DESCRIPTIONPlack::Middleware::Proxy::LoadBalancer allow you to define several backends. OPTIONS
AUTHORFranck Cuny SEE ALSOPlack::App::Proxy
|