sh 使用“localhost”SAN生成自签名证书

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 使用“localhost”SAN生成自签名证书相关的知识,希望对你有一定的参考价值。

#!/usr/bash
openssl req \
    -newkey rsa:2048 \
    -x509 \
    -nodes \
    -keyout localhost.key \
    -new \
    -out localhost.crt \
    -subj /CN=localhost \
    -reqexts SAN \
    -extensions SAN \
    -config <(cat /System/Library/OpenSSL/openssl.cnf \
        <(printf '[SAN]\nsubjectAltName=DNS:localhost')) \
    -sha256 \
    -days 3650

以上是关于sh 使用“localhost”SAN生成自签名证书的主要内容,如果未能解决你的问题,请参考以下文章

sh 在MacOS上使用SubjectAltName为localhost创建自签名证书

sh 为localhost创建自签名证书

sh 为localhost创建自签名证书

wss 连接中忽略的自签名证书 SAN

sh 生成带有2行的自签名证书

sh 无提示生成自签名SSL证书