[转]已有ssl证书,windows系统apache配置ssl证书

下载的压缩包中是这样三个文件,拷贝到 D:/Apache2/cert_apache 文件夹中(其它路径也可以),下面配置中使用。

httpd-vhosts.conf 文件,添加:

<VirtualHost *:80>
DocumentRoot “D:/web”
<Directory “D:/web”>
Options -Indexes +FollowSymlinks
AllowOverride All
Require all granted

<VirtualHost *:443>
ServerName www.abc123.com
DocumentRoot “D:/web”
SSLEngine on
SSLProxyEngine on
SSLCertificateFile “D:/Apache2/cert_apache/xxxx_www.abc123.com_public.crt”
SSLCertificateKeyFile “D:/Apache2/cert_apache/xxxx_www.abc123.com.key”

httpd.conf文件,打开注释

LoadModule ssl_module modules/mod_ssl.so
Include conf/extra/httpd-ssl.conf
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_http_module modules/mod_proxy_http.so

切记开放服务器443端口访问权限

添加http跳转https
.htaccess中添加

RewriteEngine  On
RewriteBase /
RewriteCond %{SERVER_PORT} !^443$
RewriteRule (.*) https://%{SERVER_NAME}/$1 [R=301,L]

原文: https://blog.csdn.net/macwhirr123/article/details/86521931

发布了9 篇原创文章 · 获赞 0 · 访问量 6125

猜你喜欢

转载自blog.csdn.net/gx8201/article/details/90672835
今日推荐