【问题标题】:Installing SSL Certificate in PHP Xampp在 PHP Xampp 中安装 SSL 证书
【发布时间】:2017-07-12 06:21:25
【问题描述】:

如何在 windows server 2008 上的 XAMPP 中启用和安装 SSL 证书? 如何让我的网站https启用?

【问题讨论】:

标签: php apache xampp windows-server-2008-r2


【解决方案1】:

这里是在您的 xampp windows 服务器上创建和安装 SSL 证书的几个步骤

1 创建私钥 命令:openssl genrsa -des3 -out server.key 1024 2 生成证书签名请求 命令:openssl req -new -key server.key -out server.csr 3 签署证书 命令:openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt 4.安装和配置证书 将 server.key 和 server.crt 复制到 crypt 目录并为您的 Web 应用程序配置 ssl conf 5. 重启 Apache 服务器。

参考 Read more here

【讨论】:

    猜你喜欢
    • 2014-06-26
    • 2021-10-21
    • 2016-08-30
    • 1970-01-01
    • 2015-08-20
    • 2017-03-05
    • 1970-01-01
    • 1970-01-01
    • 2016-04-24
    相关资源
    最近更新 更多