Skip to content

Instantly share code, notes, and snippets.

@randylubin
Created July 1, 2012 19:02
Show Gist options
  • Select an option

  • Save randylubin/3029265 to your computer and use it in GitHub Desktop.

Select an option

Save randylubin/3029265 to your computer and use it in GitHub Desktop.

Revisions

  1. randylubin created this gist Jul 1, 2012.
    22 changes: 22 additions & 0 deletions proxyServer
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,22 @@
    var http = require('http'),
    httpProxy = require('http-proxy');

    //
    // Setup proxy server with forwarding
    //
    var options = {
    router: {
    'proxytest.randylubin.com': '127.0.0.1:7200',
    'randylubin.com': '127.0.0.1:7200',
    'pt2.randylubin.com': '127.0.0.1:4000',
    'karma.randylubin.com': '127.0.0.1:15110',
    'test.randylubin.com': '127.0.0.1:5555',
    'stealthisidea.randylubin.com': '127.0.0.1:4000',
    'ditchtheconference.com': '127.0.0.1:7000',
    'www.ditchtheconference.com': '127.0.0.1:7000',
    'www.randylubin.com': '127.0.0.1:7200'

    }
    };

    var proxyServer = httpProxy.createServer(options).listen(80);