使用openssl在windows 10下本地xampp配置https开发环境
Posted kidsitcn
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用openssl在windows 10下本地xampp配置https开发环境相关的知识,希望对你有一定的参考价值。
安装win64OpenSSL-1_1_0j后重新启动;以管理员权限启动powershell;
执行以下命令
set OPENSSL_CONF=c:xamppapacheconfopenssl.cnf
openssl req -config c:xamppapacheconfopenssl.cnf -new -out c:xamppapacheconfserver.csr -keyout c:xamppapacheconfserver.pem
openssl rsa -in c:xamppapacheconfserver.pem -out c:xamppapacheconfserver.key
openssl x509 -req -signkey c:xamppapacheconfserver.key -days 1024 -in c:xamppapacheconfserver.csr -out c:xamppapacheconfserver.crt
在httpd-ssl.conf文件中
SSLCertificateFile "C:/xampp/apache/conf/server.crt"
SSLCertificateKeyFile "C:/xampp/apache/conf/server.key"
以上是关于使用openssl在windows 10下本地xampp配置https开发环境的主要内容,如果未能解决你的问题,请参考以下文章