mirror of
https://github.com/http-party/node-http-proxy.git
synced 2025-12-08 20:59:18 +00:00
Merge pull request #225 from darashi/fix-readme
Fixes to make the websockets example work.
This commit is contained in:
commit
4d7eaff65b
@ -335,11 +335,11 @@ var http = require('http'),
|
|||||||
//
|
//
|
||||||
// Create an instance of node-http-proxy
|
// Create an instance of node-http-proxy
|
||||||
//
|
//
|
||||||
var proxy = new httpProxy.HttpProxy(
|
var proxy = new httpProxy.HttpProxy({
|
||||||
target: {
|
target: {
|
||||||
host: 'localhost',
|
host: 'localhost',
|
||||||
port: 8000
|
port: 8000
|
||||||
});
|
}});
|
||||||
|
|
||||||
var server = http.createServer(function (req, res) {
|
var server = http.createServer(function (req, res) {
|
||||||
//
|
//
|
||||||
@ -354,6 +354,8 @@ server.on('upgrade', function(req, socket, head) {
|
|||||||
//
|
//
|
||||||
proxy.proxyWebSocketRequest(req, socket, head);
|
proxy.proxyWebSocketRequest(req, socket, head);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
server.listen(8080);
|
||||||
```
|
```
|
||||||
|
|
||||||
### Configuring your Socket limits
|
### Configuring your Socket limits
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user