File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ var proxy = httpProxy.createProxyServer({});
137
137
var server = http .createServer (function (req , res ) {
138
138
// You can define here your custom logic to handle the request
139
139
// and then proxy the request.
140
- proxy .web (req, res, { target: ' http://127.0.0.1:5060 ' });
140
+ proxy .web (req, res, { target: ' http://127.0.0.1:5050 ' });
141
141
});
142
142
143
143
console .log (" listening on port 5050" )
@@ -175,7 +175,7 @@ var server = http.createServer(function(req, res) {
175
175
// You can define here your custom logic to handle the request
176
176
// and then proxy the request.
177
177
proxy .web (req, res, {
178
- target: ' http://127.0.0.1:5060 '
178
+ target: ' http://127.0.0.1:5050 '
179
179
});
180
180
});
181
181
You can’t perform that action at this time.
0 commit comments