forked from Neveryu/rtsp2web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
node-https.js
76 lines (68 loc) · 1.88 KB
/
node-https.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
const https = require('https')
const http = require('http')
const fs = require('fs')
const events = require('events')
const net = require('net')
const tls = require('tls')
/**
* 【node create https】
* 第一种方式
*/
const options1 = {
key: fs.readFileSync('./key.pem'),
cert: fs.readFileSync('./cert.pem')
}
console.log(options1)
/**
* 【node create https】
* 第二种方式
*/
const options2 = {
pfx: fs.readFileSync('./cert.pfx'),
passphrase: fs.readFileSync('./passphrase.txt')
}
console.log(options2)
/**
* https
* http.createServer() return https.Server
* https.Server Extends tls.Server
* tls.Server Extends net.Server
* net.Server Extends EventEmitter
*/
const httpServer = https
.createServer(options2, (req, res) => {
res.writeHead(200)
res.end('hello world https\n')
})
.listen(8081)
/**
* http
* http.Server Extends net.Server
* net.Server Extends EventEmitter
*/
// const httpServer = http
// .createServer((req, res) => {
// res.writeHead(200)
// res.end('hello world http\n')
// })
// .listen(8081)
console.log(Object.getPrototypeOf(httpServer) instanceof tls.Server)
// curl -k https://localhost:8081/
// -k参数指定跳过 SSL 检测。
// $ curl -k https://www.example.com
// 上面命令不会检查服务器的 SSL 证书是否正确。
/**
* How to Generate SSL Certificates
* use key & cert
*/
// 1、先生成key.pem(生成一个私钥)
// 2、再生成csr.pem(使用私钥创建一个CSR(证书签署请求))
// 3、再生成cert.pem(从CSR中生成SSL证书,完了,现在你可以删除csr.pem文件,也可以保留它。)
/**
* How to Generate SSL Certificates
* use pfx & passphrase
*/
// 1、根据上面的key.pem和cert.pem文件来生成cert.pfx
// 2、它会要你输入密码
// 3、把你输入的密码手动写到passphrase.txt文件中
// 这样你就得到了cert.pfx和passphrase.txt