phpStudy安裝ssl證照 – HTTPS SSL 教程

hdgara1發表於2020-03-05

phpStudy安裝ssl證照 – HTTPS 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>

 

全球可信CA機構

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31483669/viewspace-2678603/,如需轉載,請註明出處,否則將追究法律責任。

相關文章