Let's suppose you were running multiple http application servers, but you only wanted to expose one machine to the internet. You could setup node-http-proxy on that one machine and then reverse-proxy the incoming http requests to locally running services which were not exposed to the outside network.
Let's suppose you were running multiple http application servers, but you only wanted to expose one machine to the internet. You could setup node-http-proxy on that one machine and then reverse-proxy the incoming http requests to locally running services which were not exposed to the outside network.
### Installing npm (node package manager)
### Installing npm (node package manager)
<pre>
``` js
curl http://npmjs.org/install.sh | sh
curlhttp://npmjs.org/install.sh | sh
</pre>
```
### Installing node-http-proxy
### Installing node-http-proxy
<pre>
``` js
npm install http-proxy
npminstallhttp-proxy
</pre>
```
## Using node-http-proxy
## Using node-http-proxy
...
@@ -51,33 +51,33 @@ In each of these scenarios node-http-proxy can handle any of these types of requ
...
@@ -51,33 +51,33 @@ In each of these scenarios node-http-proxy can handle any of these types of requ
See the [examples][3] for more working sample code.
See the [examples][3] for more working sample code.
A Proxy Table is a simple lookup table that maps incoming requests to proxy target locations. Take a look at an example of the options you need to pass to httpProxy.createServer:
A Proxy Table is a simple lookup table that maps incoming requests to proxy target locations. Take a look at an example of the options you need to pass to httpProxy.createServer:
<pre>
``` js
var options = {
varoptions={
router:{
router:{
'foo.com/baz':'127.0.0.1:8001',
'foo.com/baz':'127.0.0.1:8001',
'foo.com/buz':'127.0.0.1:8002',
'foo.com/buz':'127.0.0.1:8002',
'bar.com/buz':'127.0.0.1:8003'
'bar.com/buz':'127.0.0.1:8003'
}
}
};
};
</pre>
```
The above route table will take incoming requests to 'foo.com/baz' and forward them to '127.0.0.1:8001'. Likewise it will take incoming requests to 'foo.com/buz' and forward them to '127.0.0.1:8002'. The routes themselves are later converted to regular expressions to enable more complex matching functionality. We can create a proxy server with these options by using the following code:
The above route table will take incoming requests to 'foo.com/baz' and forward them to '127.0.0.1:8001'. Likewise it will take incoming requests to 'foo.com/buz' and forward them to '127.0.0.1:8002'. The routes themselves are later converted to regular expressions to enable more complex matching functionality. We can create a proxy server with these options by using the following code:
<pre>
``` js
var proxyServer = httpProxy.createServer(options);
varproxyServer=httpProxy.createServer(options);
proxyServer.listen(80);
proxyServer.listen(80);
</pre>
```
### Proxy requests using a 'Hostname Only' ProxyTable
### Proxy requests using a 'Hostname Only' ProxyTable
As mentioned in the previous section, all routes passes to the ProxyTable are by default converted to regular expressions that are evaluated at proxy-time. This is good for complex URL rewriting of proxy requests, but less efficient when one simply wants to do pure hostname routing based on the HTTP 'Host' header. If you are only concerned with hostname routing, you change the lookup used by the internal ProxyTable:
As mentioned in the previous section, all routes passes to the ProxyTable are by default converted to regular expressions that are evaluated at proxy-time. This is good for complex URL rewriting of proxy requests, but less efficient when one simply wants to do pure hostname routing based on the HTTP 'Host' header. If you are only concerned with hostname routing, you change the lookup used by the internal ProxyTable:
<pre>
``` js
var options = {
varoptions={
hostnameOnly:true,
hostnameOnly:true,
router:{
router:{
'foo.com':'127.0.0.1:8001',
'foo.com':'127.0.0.1:8001',
'bar.com':'127.0.0.1:8002'
'bar.com':'127.0.0.1:8002'
}
}
}
}
</pre>
```
Notice here that I have not included paths on the individual domains because this is not possible when using only the HTTP 'Host' header. Care to learn more? See [RFC2616: HTTP/1.1, Section 14.23, "Host"][4].
Notice here that I have not included paths on the individual domains because this is not possible when using only the HTTP 'Host' header. Care to learn more? See [RFC2616: HTTP/1.1, Section 14.23, "Host"][4].
### Proxy requests with an additional forward proxy
### Proxy requests with an additional forward proxy
Sometimes in addition to a reverse proxy, you may want your front-facing server to forward traffic to another location. For example, if you wanted to load test your staging environment. This is possible when using node-http-proxy using similar JSON-based configuration to a proxy table:
Sometimes in addition to a reverse proxy, you may want your front-facing server to forward traffic to another location. For example, if you wanted to load test your staging environment. This is possible when using node-http-proxy using similar JSON-based configuration to a proxy table:
<pre>
``` js
var proxyServerWithForwarding = httpProxy.createServer(9000, 'localhost', {
The forwarding option can be used in conjunction with the proxy table options by simply including both the 'forward' and 'router' properties in the options passed to 'createServer'.
The forwarding option can be used in conjunction with the proxy table options by simply including both the 'forward' and 'router' properties in the options passed to 'createServer'.
### Using node-http-proxy from the command line
### Using node-http-proxy from the command line
When you install this package with npm, a node-http-proxy binary will become available to you. Using this binary is easy with some simple options:
When you install this package with npm, a node-http-proxy binary will become available to you. Using this binary is easy with some simple options:
<pre>
``` js
usage: node-http-proxy [options]
usage:node-http-proxy[options]
All options should be set with the syntax --option=value
You have all the full flexibility of node-http-proxy offers in HTTPS as well as HTTP. The two basic scenarios are: with a stand-alone proxy server or in conjunction with another HTTPS server.
You have all the full flexibility of node-http-proxy offers in HTTPS as well as HTTP. The two basic scenarios are: with a stand-alone proxy server or in conjunction with another HTTPS server.
Websockets are handled automatically when using the `httpProxy.createServer()`, but if you want to use it in conjunction with a stand-alone HTTP + WebSocket (such as [socket.io][5]) server here's how:
Websockets are handled automatically when using the `httpProxy.createServer()`, but if you want to use it in conjunction with a stand-alone HTTP + WebSocket (such as [socket.io][5]) server here's how:
<pre>
``` js
var http = require('http'),
varhttp=require('http'),
httpProxy=require('http-proxy');
httpProxy=require('http-proxy');
//
//
// Create an instance of node-http-proxy
// Create an instance of node-http-proxy
//
//
var proxy = new httpProxy.HttpProxy();
varproxy=newhttpProxy.HttpProxy();
var server = http.createServer(function (req, res) {
varserver=http.createServer(function(req,res){
//
//
// Proxy normal HTTP requests
// Proxy normal HTTP requests
//
//
...
@@ -280,9 +280,9 @@ Websockets are handled automatically when using the `httpProxy.createServer()`,
...
@@ -280,9 +280,9 @@ Websockets are handled automatically when using the `httpProxy.createServer()`,
@@ -290,8 +290,8 @@ Websockets are handled automatically when using the `httpProxy.createServer()`,
...
@@ -290,8 +290,8 @@ Websockets are handled automatically when using the `httpProxy.createServer()`,
host:'localhost',
host:'localhost',
port:8000
port:8000
});
});
});
});
</pre>
```
<br/>
<br/>
### Why doesn't node-http-proxy have more advanced features like x, y, or z?
### Why doesn't node-http-proxy have more advanced features like x, y, or z?
...
@@ -299,10 +299,10 @@ Websockets are handled automatically when using the `httpProxy.createServer()`,
...
@@ -299,10 +299,10 @@ Websockets are handled automatically when using the `httpProxy.createServer()`,
If you have a suggestion for a feature currently not supported, feel free to open a [support issue][6]. node-http-proxy is designed to just proxy http requests from one server to another, but we will be soon releasing many other complimentary projects that can be used in conjunction with node-http-proxy.
If you have a suggestion for a feature currently not supported, feel free to open a [support issue][6]. node-http-proxy is designed to just proxy http requests from one server to another, but we will be soon releasing many other complimentary projects that can be used in conjunction with node-http-proxy.