From 3d5614ac5b4801d3c315e68a726862fb44c78def Mon Sep 17 00:00:00 2001 From: ren Date: Fri, 13 Jun 2025 15:12:50 +0300 Subject: [PATCH] Change port to 80 temporarily --- server.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.js b/server.js index 74ae327..f43f5df 100644 --- a/server.js +++ b/server.js @@ -2,7 +2,7 @@ const express = require('express'); const path = require('path'); const fs = require('fs'); const app = express(); -const port = 3000; +const port = 80; app.use(express.static(path.join(__dirname, 'public'))); app.use('/gps', express.static(path.join(__dirname, 'gps'))); // Serve static files from the gps directory