changed port

This commit is contained in:
2025-09-25 17:05:57 +02:00
parent 91caf1c3e5
commit 389c10b5bc

View File

@@ -10,7 +10,7 @@ app.set("view engine", "ejs");
app.use(express.json({ limit: "10mb" })); app.use(express.json({ limit: "10mb" }));
app.get("/", (req, res) => { app.get("/", (req, res) => {
res.status(500).render("index.ejs"); res.status(502).render("index.ejs");
}); });
app.listen(port, () => { app.listen(port, () => {