From d22d98fad2266c86868aa1d50b371aafc28a8fe1 Mon Sep 17 00:00:00 2001 From: ghkkk090 Date: Sat, 10 Sep 2022 10:59:45 +0700 Subject: [PATCH] Update index.ts --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index c9f84f3..bb33a3a 100644 --- a/src/index.ts +++ b/src/index.ts @@ -152,6 +152,6 @@ https.createServer({key, cert}, app).listen(PORT_BNGI, '0.0.0.0', 511, () => { }) // Create the API server -http.createServer(apiApp).listen(PORT_API, '0.0.0.0', 511, () => { +http.createServer(apiApp).listen(PORT_API, '0.0.0.0', 4369, () => { console.log(`API server listening on port ${PORT_API}!`); })