Quantcast
Channel: CNode:Node.js专业中文社区
Viewing all articles
Browse latest Browse all 14821

express搭建https出现的问题

$
0
0

因为我的个人服务器主要针对的是移动app的,仅作为rest api接口使用,苹果1.1号之后需要https类型的接口,如果http的需要提交部分说明。

现在申请了相关证书启动后没有报错,通过ip地址和端口的形式可以访问,但是反而通过域名无法访问了。没有任何响应。

求大神指点。

https部分代码 服务端我是通过如下代码创建 var https = require(‘https’); var fs = require(‘fs’);

var options = { pfx:fs.readFileSync(’./keys/server.pfx’), passphrase:‘your password’ };

https.createServer(options,function(req,res){ res.writeHead(200); res.end(‘hello world\n’); }).listen(80,‘127.0.0.1’);


Viewing all articles
Browse latest Browse all 14821

Trending Articles