我正在使用运行 ubuntu 和 nodejs 的 ec2 服务器。我认为这会创建一个有效的服务器,如果我访问我的 ec2 网址,它会做出响应。
var http = require("http");
var port = 80;
var serverUrl = "0.0.0.0";
console.log("Starting web server at " + serverUrl + ":" + port); http.createServer(
function(req, res) {
timestamp = new Date();
console.log("Request for URL " + req.url + " received at " + timestamp);
if (req.url === '/error') {
console.log('Throwing an error');
throw "Oops";
}
res.end("Hello World " + timestamp);
}).listen(port, serverUrl);
我已经使用了 nodejs 并且特别是表达了一段时间,但从来没有尝试过自己在 vps 上部署它,任何建议都值得赞赏。