标签: node.js cluster-computing
所以我在app.js文件中有以下代码:
app.js
http.createServer(function(request, response) { // code }).listen(80); // var options = ... https.createServer(options, function (request, response) { // code }).listen(443);
如何使用群集在单个进程中运行服务器对象?
由于
答案 0 :(得分:0)
Cluster API实际上将运行2个服务器作为2个进程。这个问题应该听起来“如何配置connect或express来收听2个端口”
connect
express