From 5f5c1cfb45f3a93f24c46cfe6460e101767cfb6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20M=C3=BCller?= Date: Tue, 16 Feb 2021 23:33:25 +0100 Subject: [PATCH] PAPI-4: Changing used port to https port 443 --- app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.ts b/app.ts index d88f0f0..02c654d 100644 --- a/app.ts +++ b/app.ts @@ -7,7 +7,7 @@ import {GeneralInfoRoutes} from './src/models/dhbw-service/generalInfo.routes.co const app: express.Application = express(); const server: http.Server = http.createServer(app); -const port: Number = 3000; +const port: Number = 443; const routes: Array = []; // here we are adding middleware to parse all incoming requests as JSON