如何给本地虚拟域名添加https证书

证书现在越来越火,如果网站不自带证书,都有不好意思

在之前,想给本地虚拟域名添加证书,如果单纯命令一行行来,还是非常麻烦的

今天告诉大家一个非常简单的方法

直接见代码

```

openssl req -x509 -out localhost.crt -keyout localhost.key \
-newkey rsa:2048 -nodes -sha256 \
-subj '/CN=localhost' -extensions EXT -config <( \ printf "[dn]\nCN=localhost\n[req]\ndistinguished_name = dn\n[EXT]\nsubjectAltName=DNS:localhost\nkeyUsage=digitalSignature\nextendedKeyUsage=serverAuth") ``` 我们可以将localhost改成自己的本地虚拟域名即可使用

    A+
发布日期:2021年02月08日  所属分类:未分类

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: