Revert server port to 80 to match untouched user docker-compose.yml mappings indefinitely

This commit is contained in:
Kroonk
2026-04-12 16:41:05 +02:00
parent 567cb67763
commit 7509253ee7
4 changed files with 3 additions and 3 deletions

View File

@@ -177,7 +177,7 @@ app.get('*', (req, res) => {
res.sendFile(path.join(__dirname, '../public/index.html'));
});
const PORT = 8080;
const PORT = 80;
app.listen(PORT, () => {
console.log(`Backend server listening on port ${PORT}`);
});