Skip to content

Instantly share code, notes, and snippets.

@slickplaid
Forked from indexzero/round-robin-proxy.js
Created June 9, 2011 23:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save slickplaid/1018003 to your computer and use it in GitHub Desktop.
Save slickplaid/1018003 to your computer and use it in GitHub Desktop.
A simple example of how to do round-robin proxying for a single domain
var httpProxy = require('http-proxy');
//
// Addresses to use in the round robin proxy
//
var addresses = [
{
host: 'ws1.0.0.0',
port: 80
},
{
host: 'ws2.0.0.0',
port: 80
}
];
httpProxy.createServer(function (req, res, proxy) {
//
// Get the first location off of the 'queue'.
//
var target = addresses.shift();
//
// Proxy to the specified location
//
// Remark: You may want to do host header checking here
// by looking at req.headers.host.
//
proxy.proxyRequest(req, res, target);
//
// Push the location to the end of the 'queue'.
//
addresses.push(target);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment