简易HTTPS 加密证书的工具

mkcert 是生成本地 HTTPS 加密证书的工具,一个命令就可以生成证书,不需要任何配置。

在 Linux 上,安装 certutil

1
2
$ sudo apt install libnss3-tools
$ sudo yum install nss-tools

使用示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
$ mkcert -install
Created a new local CA at "/Users/filippo/Library/Application Support/mkcert" 💥
The local CA is now installed in the system trust store! ⚡️
The local CA is now installed in the Firefox trust store (requires restart)! 🦊

$ mkcert example.com '*.example.org' myapp.dev localhost 127.0.0.1 ::1
Using the local CA at "/Users/filippo/Library/Application Support/mkcert" ✨

Created a new certificate valid for the following names 📜
- "example.com"
- "*.example.org"
- "myapp.dev"
- "localhost"
- "127.0.0.1"
- "::1"

The certificate is at "./example.com+5.pem" and the key at "./example.com+5-key.pem" ✅

使用方法参考

本文标题:简易HTTPS 加密证书的工具

文章作者:shuke

发布时间:2020年05月03日 - 11:05

最后更新:2020年05月03日 - 11:05

原始链接:https://shuke163.github.io/2020/05/03/%E7%AE%80%E6%98%93HTTPS-%E5%8A%A0%E5%AF%86%E8%AF%81%E4%B9%A6%E7%9A%84%E5%B7%A5%E5%85%B7/

许可协议: 署名-非商业性使用-禁止演绎 4.0 国际 转载请保留原文链接及作者。

-------------本文结束感谢您的阅读-------------

本文标题:简易HTTPS 加密证书的工具

文章作者:shuke

发布时间:2020年05月03日 - 11:05

最后更新:2020年05月03日 - 11:05

原始链接:https://shuke163.github.io/2020/05/03/%E7%AE%80%E6%98%93HTTPS-%E5%8A%A0%E5%AF%86%E8%AF%81%E4%B9%A6%E7%9A%84%E5%B7%A5%E5%85%B7/

许可协议: 署名-非商业性使用-禁止演绎 4.0 国际 转载请保留原文链接及作者。

0%