mirror of
http://forgejo-oa09toasww4dgii9cj3gpzda.187.127.164.61.sslip.io/iamcoolvivek007/bharath.git
synced 2026-06-11 00:06:51 +00:00
Fix: listen on IPv6 (::) so Coolify healthcheck wget to [::1] works
This commit is contained in:
parent
22c4fc2356
commit
9a5177e124
1 changed files with 1 additions and 1 deletions
|
|
@ -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}`);
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue