From 773b4fbd22950dbe08e98a26eb4be8f1a461cc66 Mon Sep 17 00:00:00 2001 From: vincentastolfi Date: Thu, 6 Jun 2024 09:51:39 +0200 Subject: [PATCH] :green_heart: test if codefirst only deploy port 80 --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index c2c679c..50fa729 100644 --- a/index.js +++ b/index.js @@ -2,7 +2,7 @@ const express = require("express"); const app = express(); const http = require("http").Server(app); const io = require("socket.io")(http); -const port = 8081; +const port = 80; app.use(express.static("public"));