2

我正在使用运行 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 上部署它,任何建议都值得赞赏。

4

1 回答 1

8

确保您在 EC2 安全组上打开了端口 80。

通过使用curl机器的命令行来测试它是否在端口 80 上响应。

curl -v http://localhost/

如果它通过本地 curl 回答,您可能只是遇到了防火墙问题。

于 2013-05-24T04:28:21.423 回答