mirror of
https://github.com/http-party/node-http-proxy.git
synced 2025-12-08 20:59:18 +00:00
[examples] Added simple load balancer example
This commit is contained in:
parent
f20b3740b1
commit
fd7fcd8dec
36
examples/balancer/simple-balancer.js
Normal file
36
examples/balancer/simple-balancer.js
Normal file
@ -0,0 +1,36 @@
|
||||
var httpProxy = require('../../lib/node-http-proxy');
|
||||
//
|
||||
// A simple round-robin load balancing strategy.
|
||||
//
|
||||
// First, list the servers you want to use in your rotation.
|
||||
//
|
||||
var addresses = [
|
||||
{
|
||||
host: 'ws1.0.0.0',
|
||||
port: 80
|
||||
},
|
||||
{
|
||||
host: 'ws2.0.0.0',
|
||||
port: 80
|
||||
}
|
||||
];
|
||||
|
||||
httpProxy.createServer(function (req, res, proxy) {
|
||||
//
|
||||
// On each request, get the first location from the list...
|
||||
//
|
||||
var target = addresses.shift();
|
||||
|
||||
//
|
||||
// ...then proxy to the server whose 'turn' it is...
|
||||
//
|
||||
console.log('balancing request to: ', target);
|
||||
proxy.proxyRequest(req, res, target);
|
||||
|
||||
//
|
||||
// ...and then the server you just used becomes the last item in the list.
|
||||
//
|
||||
addresses.push(target);
|
||||
}).listen(8000);
|
||||
|
||||
// Rinse; repeat; enjoy.
|
||||
Loading…
x
Reference in New Issue
Block a user