phpStudy 配置 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 *:443>

      SSLEngine on

      SSLProtocol all -SSLv2 -SSLv3

      SSLCipherSuite HIGH:MEDIUM:!aNULL:!MD5


      SSLCertificateFile "D:/WWW/ssl/server.crt"

      SSLCertificateKeyFile "D:/WWW/ssl/server.key"

      SSLCertificateChainFile "D:/WWW/ssl/ca-bundle.crt"

      DocumentRoot  "D:\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 启动不了,一般是配置文件不对,请大家耐心排查。



你可能感兴趣的:(phpStudy 配置 SSL 证书)