问题使https与Express js一起使用

时间:2019-04-03 19:24:49

标签: javascript express

我已经更新了Express api服务器项目以处理https。我已经添加了/需要https包并连接了pfx文件。现在运行服务器时,http可以按预期工作,https似乎未返回任何内容。我正在测试POSTMAN中的路由。我的http调用按预期返回数据,当我运行https时,绝对没有任何显示。

当我启动节点服务器时,的确确实看到了http和https服务器已经启动的消息,我只是从https中什么都没得到。

任何建议

//my options
var options = {
pfx: fs.readFilesSync('./keys/mypfx.pfx'),
passphrase: 'mypassphrase'
}

//http server
http.createServer(app).listen(port, function(){
console.log('HTTP Server Running On Port: '+port); //I SEE THIS MESSAGE
});

//https server
https.createServer(options, app).listen(securePort, function(){
console.log('HTTPS Server Running On Port: '+securePort); //I SEE THIS MESSAGE
});

0 个答案:

没有答案