Node.js中的HTTPS示例

news/2024/7/7 13:20:39

 

  1. 需要openssl的支持, openssl本身不提供windows的安装程序,可以按照如下的步骤进行安装:

    (参考https://conetrix.com/Blog/how-to-install-openssl-on-windows-7,并复制到下面)

How-to Install OpenSSL on Windows 7

Download and run the Cygwin installer from their web site:www.cygwin.com.  OpenSSL is not one of that packages that gets installed by default with Cygwin.  The important part of install is choosing OpenSSL as one of the packages you install, because that package is not selected by default.  You do this by searching for "openssl" on the "Select Packages" step, expanding "Net" option, clicking on the "Skip" image so that a version shows, and clicking the "Next" button.  Use the image below as a reference. [more] 

 

安装完后,在cygwin的bin目录下就可以找到openssl.exe.

  1. 写如下的node.js文件。

var https = require('https'),

pem = require('pem');

 

pem.config({

pathOpenSSL: 'C:\\cygwin64\\bin\\openssl.exe'

});

 

pem.createCertificate({days:1, selfSigned:true}, function(err, keys){

https.createServer({key: keys.serviceKey, cert: keys.certificate}, function(req, res){

res.end('o hai!')

}).listen(843);

});

 

如果是linux则不需要pem.config,由于windows下openssl所在的路径不是node.js默认查找的路径,所以需要pem.config.

其他情况下如果openssl的路径不对,也需要pem.config.

如果找不到pem模块,需要运行npm install pem 进行安装。

 

  1. 运行该文件,然后访问https://localhost:843,就可以看到o hi的结果了。

更多node.js SSL的配置见这里: https://nodejs.org/api/https.html

上面的例子用的是自己创建的证书,所以访问的时候会有证书警告。

如果用的是公网可用的证书,则需要参考https://nodejs.org/api/https.html的例子。比如:

const https = require('https');

const fs = require('fs');

 

const options = {

key: fs.readFileSync('test/fixtures/keys/agent2-key.pem'),

cert: fs.readFileSync('test/fixtures/keys/agent2-cert.pem')

};

 

https.createServer(options, (req, res) => {

res.writeHead(200);

res.end('hello world\n');

}).listen(8000);

 

或者

const https = require('https');

const fs = require('fs');

 

const options = {

  pfx: fs.readFileSync('server.pfx')

};

 

https.createServer(options, (req, res) => {

  res.writeHead(200);

  res.end('hello world\n');

}).listen(8000);
										

http://www.niftyadmin.cn/n/4610376.html

相关文章

动态规划专题详细总结(常见简单类型)

什么是动态规划 动态规划(Dynamic Programming, DP)是一种用来解决一类最优化问题的算法思想。简单来说,动态规划将一个复杂的问题分解为若干个子问题,通过综合子问题的最优解来得到原问题的最优解。需要注意的是,动态规划会将每个求解过的子…

MySQL数据库无法启动的简单排错

原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 、作者信息和本声明。否则将追究法律责任。http://dgd2010.blog.51cto.com/1539422/1406691 一般来说有经验的管理员在部署操作系统时通常会将操作系统本身与应用软件分离,将两…

7-43 字符串关键字的散列映射 (25 分)

7-43 字符串关键字的散列映射 (25 分) 给定一系列由大写英文字母组成的字符串关键字和素数P,用移位法定义的散列函数H(Key)将关键字Key中的最后3个字符映射为整数,每个字符占5位;再用除留余数法将整数映射到长度为P的散列表中。例如将字符串…

Node.js 开发相关

2019独角兽企业重金招聘Python工程师标准>>> 全局安装默认存放路径npm install express -g C:\Users\Administrator\AppData\Roaming\npm转载于:https://my.oschina.net/u/1179666/blog/1511162

P1216 [USACO1.5][IOI1994]数字三角形 Number Triangles【DP、数塔问题】

题目描述 观察下面的数字金字塔。 写一个程序来查找从最高点到底部任意处结束的路径,使路径经过数字的和最大。每一步可以走到左下方的点也可以到达右下方的点。 7 3 8 8 1 0 2 7 4 4 4 5 2 6 5 在上面的样例中,从 7 \to 3 \to 8 \to 7 \to …

Linux大文件分割split和合并cat使用方法

本文主要介绍linux下两个命令:split和cat。其中,相信大家都熟悉cat命令,一般用来查看一个文件的内容,但是它还其它的功能,比如这里要介绍的文件合并功能,它可把多个文件内容合并到一个文件中。从split词义不…

RxJava 机制

韩梦飞沙 韩亚飞 313134555qq.com yue31313 han_meng_fei_sha rxjava 是 以 响应式 编程思想 编程的 java类库转载于:https://www.cnblogs.com/yue31313/p/7375552.html

vim 配色方案

2019独角兽企业重金招聘Python工程师标准>>> //这里有一个在线vim颜色编辑网站,也可以下载配置好的vim配色 http://bytefluent.com/vivify/ 1. GRB256 GRB256 基于 ir_black,感觉特别适合 Ruby on Rails 的应用开发。 网址: GitHub 作者: Gary Bernhardt…