找回密码
 立即注册

[SSL安装教程(服务器)] PHPStudy 安装SSL证书

[复制链接]
发表于 2020-7-7 16:04:53 | 显示全部楼层 |阅读模式
苹果上架
PHPStudy 安装SSL证书
1.下载SSL证书并上传到服务器
选择 [Apache] , 点击[下载SSL证书]
  1. yourdomain.com.crt     (服务器证书)
  2. yourdomain.com.key     (私钥文件)如果为空请将生成CSR时保存的私钥内容粘贴在文件中
  3. ca-bundle.crt          (根证书链)
复制代码



2. 先打开PHPStudy 的管理窗口, 点击 其他选项 , 打开配置文件 ,  vhosts-conf
20170823111338_79839.png






3. 复制该站点的配置内容.
20170823112135_84565.png




4. 建议将配置放在httpd.conf文件里面, vhosts.conf 添加站点配置文件会重写,导致配置丢失。
  1. <VirtualHost *:80>
  2.     DocumentRoot "D:\phpStudy\WWW"
  3.     ServerName demo.getssl.cn
  4.     ServerAlias
  5.   <Directory "D:\phpStudy\WWW">
  6.       Options FollowSymLinks ExecCGI
  7.       AllowOverride All
  8.       Order allow,deny
  9.       Allow from all
  10.       Require all granted
  11.   </Directory>
  12. </VirtualHost>

  13. #建议将下面SSL配置 放在 httpd.conf文件中
  14. Listen 443
  15. <VirtualHost *:443>
  16.     DocumentRoot "D:\phpStudy\WWW"
  17.     ServerName demo.getssl.cn
  18.     ServerAlias
  19.     SSLEngine on
  20.     SSLProtocol all -SSLv2 -SSLv3
  21.     SSLCertificateFile d:/ssl/yourdomain.com.crt
  22.     SSLCertificateKeyFile d:/ssl/yourdomain.com.key
  23.     SSLCertificateChainFile d:/ssl/ca-bundle.crt
  24.   <Directory "D:\phpStudy\WWW">
  25.       Options FollowSymLinks ExecCGI
  26.       AllowOverride All
  27.       Order allow,deny
  28.       Allow from all
  29.       Require all granted
  30.   </Directory>
  31. </VirtualHost>
复制代码







回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|小黑屋|一门开发者社区 ( 蜀ICP备17005078号-4 )

GMT+8, 2025-4-4 13:22 , Processed in 0.126525 second(s), 22 queries .

Powered by Discuz! X3.5

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表