我正在从 node.js 主页尝试这个简单的演示:
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(1337, '127.0.0.1');
console.log('Server running at http://127.0.0.1:1337/');
我已经在其安全组中打开了亚马逊 ec2 (1337) 上的端口。
[root@domU-12-31-38-01-8A-8D servers]# /usr/local/bin/node nodeexample.js
Server running at http://127.0.0.1:1337/
我什么也没得到,但典型的服务器没有响应。请帮帮这个菜鸟