phpStudy安装ssl证书

Posted wecloud1314

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了phpStudy安装ssl证书相关的知识,希望对你有一定的参考价值。

phpStudy安装ssl证书 – HTTPS SSL 教程(ssl证书申请

一、修改apache目录下的 httpd.conf 配置文件

       1、#LoadModule ssl_module modules/mod_ssl.so 删除行首的配置语句注释符号“#”

       2、增加一条引用语句   Include conf/vhostsssl.conf

二、

      1、在conf文件夹中创建一个vhostsssl.conf配置文件。

      2、编辑 vhostsssl.conf 文件,增加如下内容:

     Listen 443

     <VirtualHost 

      SSLEngine on

      SSLProtocol all -SSLv2 -SSLv3

      SSLCipherSuite HIGH:MEDIUM:!aNULL:!MD5

      SSLCertificateFile "D:\\phpStudy\\SSL\\2_trustauth.cn.crt"

      SSLCertificateKeyFile "D:\\phpStudy\\SSL\\trustauth.cn.key"

      SSLCertificateChainFile "D:\\phpStudy\\SSL\\1_root_bundle.crt"

      DocumentRoot  "c:\\WWW\\jsdxnb"

      <Directory />

         Options +Indexes +FollowSymLinks +ExecCGI

             AllowOverride All

                Order allow,deny

          Allow from all

        Require all granted

       </Directory>

       </VirtualHost>  

  其中

      SSLCertificateFile 是指证书公钥

      SSLCertificateKeyFile   是指证书私钥

      SSLCertificateChainFile 是指根证书

三、phpstudy 配置指定路径访问 https(我这一步没有配置,不行的话可以在 .htaccess 文件中配置)。

 

<IfModule mod_rewrite.c>

     RewriteEngine on

     RewriteBase / 

     RewriteCond %SERVER_PORT !^443$

     RewriteRule ^.*$ https://%SERVER_NAME%REQUEST_URI [L,R]

 </IfModule>

四、保存退出,并重启Apache。

ps:

Apache 启动不了,一般是配置文件不对,请大家耐心排查。一般启动不了是因为之前配置过SSL或者文件配置错误!

一般目录:phpStudy安装软件安装目录,C:\\phpStudy\\Apache\\conf

以下是备用代码,这个也可以用。

Listen 443

<VirtualHost

SSLEngine On

SSLCertificateFile “D:/ssl/2_”

SSLCertificateKeyFile “D:/ssl/3_”

SSLCertificateChainFile “D:/ssl/1_root_”

#……

DocumentRoot “D:/APP”

ServerName xs.xingshili.vip:443

</VirtualHost>

以上是关于phpStudy安装ssl证书的主要内容,如果未能解决你的问题,请参考以下文章

phpStudy安装ssl证书

phpStudy SSL证书怎么申请或下载

ssl证书 以及phpstudy配置ssl证书

phpStudy环境安装SSL证书教程(apache)

phpstudy 安装Apache SSL证书实现https连接

前端后端phpStudy环境下安装配置SSL证书,实现加密访问(Https)