thx-cert
v1.0.3
Published
A simple tool to generate self signed x509 certificate
Downloads
23
Maintainers
Readme
简介
HTTPS自签名证书工具,是为了解决启动本地HTTPS服务时,需要手动创建自签名证书的繁琐。使用命令行实现一键生成自签名证书并添加到系统钥匙串,后续使用命令可以继续查看和管理证书,同时提供了API,方便地集成到工程工具里。 该工具目前支持mac和windows系统,下面示例是使用mac。
使用说明
开始使用--使用命令行方式
生成密钥和证书 创建过程会提示输入域名,这里使用默认域名,直接回车;输入密码,向macOS钥匙串里添加证书。
# 全局安装 npm install trusted-cert -g # 或者使用yarn yarn global add trusted-cert # 一键生成自签名证书并添加到macOS钥匙串 trusted-cert install
在nodejs中使用
const https = require('https'); const fs = require('fs'); const path = require('path'); const options = { key: fs.readFileSync(path.join(process.env.HOME, '.self-signed-cert/ssl.key')), cert: fs.readFileSync(path.join(process.env.HOME, '.self-signed-cert/ssl.crt')), }; https.createServer(options, (req, res) => { res.writeHead(200); res.end('hello world\n'); }).listen(8000);
浏览器打开访问https://localhost:8000/,发现网址标为了安全
使用api方式
安装依赖
npm install trusted-cert -D
调用api
const https = require('https') const fs = require('fs') const { certificateFor } = require('trusted-cert') const hosts = ['test.m.taobao.com'] // 本地https服务要使用的domain certificateFor(hosts).then((keyAndCert) => { // keyAndCert // { // key, // cert, // trusted: true // } https.createServer(keyAndCert, (req, res) => { res.writeHead(200); res.end('hello world\n') }).listen(8000) })
浏览器打开访问https://test.m.taobao.com:8000/,发现网址标为了安全
命令行功能介绍
trusted-cert --help
Usage: trusted-cert [global options] command
Options:
-v, --version 当前版本
-h, --help display help for command
Commands:
install 生成ssl密钥和自签名证书,在系统钥匙串里添加和信任自签名证书
info 查看自签名信息
trust 信任自签名证书
add <host> 添加要支持的域名,支持以,分隔
uninstall 删除生成的ssl密钥和自签名证书
help [command] display help for command
先安装,再使用其它命令
$ trusted-cert install
trusted-cert install
一键生成自签名证书并添加到macOS钥匙串,在这个过程中,需要输入本地启动https服务要支持的域名,多个以,
分隔,然后会提示要输入密码,用来将自签名证书以sudo权限添加到系统钥匙串里,如果添加失败,后面浏览器访问https服务,会提示不安全。
trusted-cert trust
如果install过程中三次输入密码都错误了,还可以单独运行这个命令重新添加到系统钥匙串。或者发现chrome下访问https还是提醒非安全,可以去查看确认下证书是否已经添加到系统钥匙串,证书是否过期。
trusted-cert info
生成证书后,可以随时通过这个命令查看密钥等文件的位置,方便你在配置服务器https时需要它,还可以看到支持的域名,是否已经添加到系统钥匙串,证书的有效时间。
trusted-cert add <host>
通过这个命令新增本地https服务要用的域名,新增时先检测证书是否已经支持了该域名,比如证书支持*.m.taobao.com,本地要使用test.m.taobao.com域名,检测发现已经支持了,会提醒不用新增。如果遇到需要新增的,会先删除原有的密钥等文件和钥匙串里证书,然后再新增。
trusted-cert uninstall
删除本地存放密钥、证书等文件的目录,删除钥匙串里添加的证书
api介绍
在命令行工具里里局部安装【HTTPS自签名证书工具】,使用的时候通过api传入要使用的host列表,工具先检测是否安装过证书,没安装过开始安装,安装过的继续检测装过的证书是否已经支持这些host,还有其它检测,针对检测到点一一修复,最后返回密钥和证书的文件位置等信息。本地起https服务时,直接读取使用api返回的密钥和证书文件位置。
考虑到对于开发者而言,在电脑中只需要一份ssl的密钥和自签名证书就够用了,所以不管是命令行方式还是api,只需要生成一份文件存放在系统固定位置~/.self-signed-cert
,工具在钥匙串里也只有一份自签名证书,由工具来管理自证书包括生成、销毁、重新生成的生命周期。
附配置服务的HTTPS证书示例
webpack
{
// ...
devServer: {
https: {
key: fs.readFileSync(path.join(process.env.HOME, '.self-signed-cert/ssl.key')),
cert: fs.readFileSync(path.join(process.env.HOME, '.self-signed-cert/ssl.crt'))
}
}
// ...
}
nginx
# ...
server {
listen 443;
server_name shop.alimama.com;
ssl on;
ssl_certificate /Users/xxx/.self-signed-cert/ssl.crt;
ssl_certificate_key /Users/xxx/.self-signed-cert/ssl.key;
location / {
proxy_pass http://127.0.0.1:8002;
}
}
# ...
nodejs
const https = require('https');
const fs = require('fs');
const path = require('path');
const options = {
key: fs.readFileSync(path.join(process.env.HOME, '.self-signed-cert/ssl.key')),
cert: fs.readFileSync(path.join(process.env.HOME, '.self-signed-cert/ssl.crt')),
};
https.createServer(options, (req, res) => {
res.writeHead(200);
res.end('hello world\n');
}).listen(8000);