Apache配置https
Posted xingxingye
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Apache配置https相关的知识,希望对你有一定的参考价值。
在C:phpStudyApacheconf 新建 vhostssl.conf
-----------------添加内容--------------------
Listen 443
<VirtualHost *:443>
DocumentRoot "C:phpStudyWWW"
ServerName 域名
ServerAlias 域名
SSLEngine on
SSLProtocol TLSv1 TLSv1.1 TLSv1.2
SSLCipherSuite HIGH:MEDIUM:!aNULL:!MD5
SSLCertificateFile "C:phpStudyApachecert*.top_public.crt"
SSLCertificateKeyFile "C:phpStudyApachecert*.top.key"
SSLCertificateChainFile "C:phpStudyApachecert*.top_chain.crt"
<Directory "C:phpStudyWWW">
Options +Indexes +FollowSymLinks +ExecCGI
AllowOverride All
Order allow,deny
Allow from all
Require all granted
</Directory>
</VirtualHost>
以上是关于Apache配置https的主要内容,如果未能解决你的问题,请参考以下文章