From eea79cab53f27371cad387a524ee3aaefa742c48 Mon Sep 17 00:00:00 2001 From: donasaur Date: Fri, 20 Nov 2015 17:28:37 -0800 Subject: [PATCH] Updated markdown docs to mention proxy rules --- README.md | 3 +++ UPGRADING.md | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0bc800f..a07ac81 100644 --- a/README.md +++ b/README.md @@ -328,6 +328,9 @@ proxyServer.on('upgrade', function (req, socket, head) { proxyServer.listen(8015); ``` +#### ProxyTable API +A proxy table API is available through through this add-on [module](https://github.com/donasaur/http-proxy-rules), which lets you define a set of rules to translate matching routes to target routes that the reverse proxy will talk to. + ### Contributing and Issues * Search on Google/Github diff --git a/UPGRADING.md b/UPGRADING.md index 0e89427..f77243d 100644 --- a/UPGRADING.md +++ b/UPGRADING.md @@ -94,4 +94,4 @@ The new API makes it really easy to implement code that behaves like the old Mid ### ProxyTable API -See this [link](http://blog.nodejitsu.com/node-http-proxy-1dot0/) for an example of how to add proxy table functionality using the new API. +See this [link](https://github.com/donasaur/http-proxy-rules/) for an add-on proxy rules module that you can use to simulate the old ProxyTable API.