Fix: listen on IPv6 (::) so Coolify healthcheck wget to [::1] works

This commit is contained in:
Vivek 2026-05-31 07:20:05 +00:00
parent 22c4fc2356
commit 9a5177e124

View file

@ -133,6 +133,6 @@ app.use((err, req, res, next) => {
res.status(500).render('pages/500');
});
app.listen(config.port, '0.0.0.0', () => {
app.listen(config.port, '::', () => {
console.log(`BharathTrucks running at http://localhost:${config.port}`);
});