We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1440b5 commit bca392dCopy full SHA for bca392d
README.md
@@ -145,7 +145,7 @@ var proxy = httpProxy.createProxyServer({});
145
var server = http.createServer(function(req, res) {
146
// You can define here your custom logic to handle the request
147
// and then proxy the request.
148
- proxy.web(req, res, { target: 'http://127.0.0.1:5060' });
+ proxy.web(req, res, { target: 'http://127.0.0.1:5050' });
149
});
150
151
console.log("listening on port 5050")
@@ -183,7 +183,7 @@ var server = http.createServer(function(req, res) {
183
184
185
proxy.web(req, res, {
186
- target: 'http://127.0.0.1:5060'
+ target: 'http://127.0.0.1:5050'
187
188
189
0 commit comments