Ejemplo 1: at = código de error = H10 desc = “Aplicación bloqueada” método = GET ruta = “/
Logged in as admin,
inside the App in question,
the “More” button in the upper right has a “Restart all dynos” option.
Ejemplo 2: at = error code = h10 desc = “app crashed” method = get path = “https://foroayuda.es/” host
Found solution for me here: Heroku + node.js error (Web process failed to bind to $PORT within 60 seconds of launch)
In my case my app crashed because I was hard setting the PORT, instead of using the port that heroku dinamicaly sets, which can be accessed with process.env.PORT
app.listen(process.env.PORT || 3000, function(){
console.log("Express server listening on port %d in %s mode", this.address().port, app.settings.env);
});
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)