我想生成用于请求SSL(通配符)证书的CSR文件.此证书和私钥将在具有Apache和Nginx的多台计算机上使用.
RapitSSL为不同的设置声明了以下命令:
Nginx的
$ openssl req -new -newkey rsa:2048 -nodes -keyout server.key -out server.csr
Apache Mod SSL
$ openssl genrsa -des3 -out <private key file name>.key 2048
Apache的SSL
$ openssl genrsa -des3 -out www.yourdomain-example.com.key 2048
有没有办法生成适用于Apache和Nginx的CSR?