diff --git a/src/HttpServer/HttpServer.ts b/src/HttpServer/HttpServer.ts index acee0ad..1e3f5e3 100644 --- a/src/HttpServer/HttpServer.ts +++ b/src/HttpServer/HttpServer.ts @@ -9,7 +9,7 @@ const bodyParser = require("body-parser"); const compression = require("compression"); const zlib = require("zlib"); -const SERVER_PORT: number = Number(process.env.SERVER_PORT) || 80; +const SERVER_PORT: number = Number(process.env.SERVER_PORT) || 8190; export default class HttpServer { private readonly clientRequestHandler: RequestHandler; @@ -83,4 +83,4 @@ export default class HttpServer { this.logger.log1(`HTTPServer listening at http://localhost:${SERVER_PORT}`) }.bind(this)); } -} \ No newline at end of file +}