mkcert是生成本地HTTPS加密证书的工具,一个命令就可以生成证书,不需要任何配置。
使用示例
$ mkcert -installCreated 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 ::1Using 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"安装使用
在macOS上,使用Homebrew进行安装
brew install mkcertbrew install nss # if you use Firefox在Linux上,安装 certutil
sudo apt install libnss3-tools -or-sudo yum install nss-tools在Windows上,下载预先编译好的可执行文件
评论