- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我对 HTTPS、SSL 等几乎没有经验。
我想知道如何将 Node.js 与 HTTPS 结合使用。我知道如何很好地使用 node.js,但是在使用 HTTPS 时会出错。
我想我需要安装一些东西(openSSL?)。我想知道我必须在 Windows 8.1 计算机上安装的所有东西(不,我不想获得任何形式的 linux。也没有 cygwin),以便使用 node.js HTTPS 服务器。
我不需要付费证书,我只需要让它发挥作用。它不接收来自浏览器的请求,所以我不关心付费证书。
最佳答案
在您的系统上安装了 node.js 后,只需按照以下步骤操作即可运行支持 HTTP 和 HTTPS 的基本 Web 服务器!
创建您要存储 key 和证书的文件夹:
mkdir conf
转到那个目录:
cd conf
获取此 ca.cnf
文件以用作配置快捷方式:
wget https://raw.githubusercontent.com/anders94/https-authorized-clients/master/keys/ca.cnf
使用此配置创建一个新的证书颁发机构:
openssl req -new -x509 -days 9999 -config ca.cnf -keyout ca-key.pem -out ca-cert.pem
现在我们在 ca-key.pem
和 ca-cert.pem
中有了我们的证书颁发机构,让我们为服务器生成一个私钥:
openssl genrsa -out key.pem 4096
获取此 server.cnf
文件以用作配置快捷方式:
wget https://raw.githubusercontent.com/anders94/https-authorized-clients/master/keys/server.cnf
使用此配置生成证书签名请求:
openssl req -new -config server.cnf -key key.pem -out csr.pem
签署请求:
openssl x509 -req -extfile server.cnf -days 999 -passin "pass:password"-in csr.pem -CA ca-cert.pem -CAkey ca-key.pem -CAcreateserial -out cert. pem
将您的证书复制到您的根证书文件夹:
sudo cp ca-crt.pem/usr/local/share/ca-certificates/ca-crt.pem
更新 CA 存储:
sudo update-ca-certificates
首先,确保您的 server.js
代码看起来像这样:
var http = require('http');
var https = require('https');
var fs = require('fs');
var httpsOptions = {
key: fs.readFileSync('/path/to/HTTPS/server-key.pem'),
cert: fs.readFileSync('/path/to/HTTPS/server-crt.pem')
};
var app = function (req, res) {
res.writeHead(200);
res.end("hello world\n");
}
http.createServer(app).listen(8888);
https.createServer(httpsOptions, app).listen(4433);
转到server.js
所在的目录:
cd/path/to
运行 server.js
:
node server.js
关于node.js - 如何在 Node.js 中使用 HTTPS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23001643/
我是一名优秀的程序员,十分优秀!