We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d9ed36 commit c8fa599Copy full SHA for c8fa599
README.md
@@ -137,7 +137,7 @@ var proxy = httpProxy.createProxyServer({});
137
var server = http.createServer(function(req, res) {
138
// You can define here your custom logic to handle the request
139
// and then proxy the request.
140
- proxy.web(req, res, { target: 'http://127.0.0.1:5060' });
+ proxy.web(req, res, { target: 'http://127.0.0.1:5050' });
141
});
142
143
console.log("listening on port 5050")
@@ -175,7 +175,7 @@ var server = http.createServer(function(req, res) {
175
176
177
proxy.web(req, res, {
178
- target: 'http://127.0.0.1:5060'
+ target: 'http://127.0.0.1:5050'
179
180
181
0 commit comments