From 131cd3f1bb5018bac438ee7e6b094b41d422958d Mon Sep 17 00:00:00 2001 From: not-nullptr Date: Fri, 8 Mar 2024 22:13:52 +0000 Subject: [PATCH] don't run stuff as root??? --- server.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server.js b/server.js index 3aa617b..d186070 100644 --- a/server.js +++ b/server.js @@ -13,8 +13,8 @@ const app = express(); const httpServer = http.createServer(app); const httpsServer = https.createServer(credentials, app); -const PORT = 80; -const SSLPORT = 443; +const PORT = 3000; +const SSLPORT = 3001; httpServer.listen(PORT, function () { console.log("HTTP Server is running on: http://localhost:%s", PORT);