Commit 2836de1bb1d94877b9a8cae404cb6e975fac7566

Authored by Artem Babak
1 parent 032655c8

server.js

Showing 1 changed file with 2 additions and 2 deletions
... ... @@ -28,10 +28,10 @@ const express = require('express');
28 28 const http = require('http');
29 29 const httpProxy = require('http-proxy');
30 30 const forwardHost = 'localhost';
31   -const forwardPort = 8085;
  31 +const forwardPort = 8080;
32 32
33 33 const ruleNodeUiforwardHost = 'localhost';
34   -const ruleNodeUiforwardPort = 8085;
  34 +const ruleNodeUiforwardPort = 8080;
35 35
36 36 const app = express();
37 37 const server = http.createServer(app);
... ...