我正在aws ec2上部署服务器。我使用pm2和nginx。但是,当应用崩溃时,Web应用将返回502错误的登机口。服务器无法自动重启。 我查看了其他建议以下代码的文章,但这无济于事。
process.on('uncaughtException', function(e) {
console.log('An error has occured. error is: %s and stack trace is: %s', e, e.stack);
console.log("Process will restart now.");
process.exit(1);
});