admin 管理员组

文章数量: 886992

为了实验一下WebRTC,搭了个简单的https服务器。说说步骤:

  1. 生成OpenSSL证书
  2. 使用Nodejs的https模块建立服务器

OpenSSL 证书

我机子Windows 7,安装了Cygwin,里面安装了openssl,我用它来生成https服务器需要的证书文件。

1. 生成私钥key文件

$ openssl genrsa -out privatekey.pem 1024

Generating RSA private key, 1024 bit long modulus
....++++++
....................

本文标签: 服务器 nodejs HTTPS Windows