我有一个 linux 服务器(ubuntu)并安装了 node.js。
我的脚本:webserver.js:
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(80);
console.log('Server is running');
我正在使用 putty 启动服务器脚本连接到服务器:node webserver.js
有用。但是如果我关闭终端,网络服务器就会终止。我该如何解决这个问题?