Windows下Apache配置https


1、將mycert.crt 和mycert.key 文件復制到Apache 一級目錄中

 

2、httpd.conf 開啟相關的loadModule
LoadModule ssl_module modules/mod_ssl.so 去掉前面#號 其他需要開啟的 根據錯誤提示逐個開啟

 

3、http-vhost.conf 加入配置
#原始配置 可以保留
listen 80
<VirtualHost *:80>
   DocumentRoot "D:/website/seo/public"
   ServerName www.test.com
  DirectoryIndex index.php index.html
  <Directory "D:/website/seo/public">
     Options FollowSymLinks
     AllowOverride All
     Order allow,deny
     Allow from all
   </Directory>
    CustomLog "logs/test.log" combined
</VirtualHost>

#https配置
listen 443
<VirtualHost *:443>
   DocumentRoot "D:/website/seo/public"
   ServerName www.test.com
   SSLEngine on SSLCertificateFile mycert.crt SSLCertificateKeyFile mycert.key
  DirectoryIndex index.php index.html
  <Directory "D:/website/seo/public">
     Options FollowSymLinks
     AllowOverride All
     Order allow,deny
     Allow from all
   </Directory>
    CustomLog "logs/test.log" combined
</VirtualHost>
 
4、重啟Apache
 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM