apche 配置https
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了apche 配置https相关的知识,希望对你有一定的参考价值。
编辑Apache根目录下 conf/httpd.conf 文件,
找到 #LoadModule ssl_module modules/mod_ssl.so 和 #Include conf/extra/httpd-ssl.conf,去掉前面的#号注释;编辑Apache根目录下 conf/extra/httpd-ssl.conf 文件,修改如下内容:
<VirtualHost _default_:443> DocumentRoot ""C:/AppServ/www"" ServerName www.xxx.com SSLEngine on SSLCertificateFile "C:/Apache/2_www.xxx.com.crt" SSLCertificateKeyFile "C:/Apache/2_www.xxx.com.key" SSLCertificateChainFile "C:/Apache/1_root_bundle.crt"</VirtualHost>
有几点:第一 必须写成 -default-:443 这个网上很多坑,一定要这样写
第二 DocumentRoot 写的是apache的www目录
第三 三个证书文件路径写绝对路径
本文出自 “12257285” 博客,请务必保留此出处http://12267285.blog.51cto.com/12257285/1981498
以上是关于apche 配置https的主要内容,如果未能解决你的问题,请参考以下文章