Apache HTTP Server 配置SSL证书(Windows)

Apache2.4.39 HTTP Server 配置SSL证书

1. 申请证书

申请证书步骤(略)
证书名称如下:

ca-bundle.crt
xxx_com.crt
xxx_com.key

2. 配置

证书位置:Apache2.4.39\conf\ssl

Apache2.4.39\conf\ssl

在这里插入图片描述
修改两个配置文件:
在这里插入图片描述
0localhost_80.conf

<VirtualHost *:80>
   	RewriteEngine On
	RewriteCond %{HTTPS} off
	RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</VirtualHost>

<VirtualHost 
上一篇:3D看车如何实现?有哪些功能特点和优势?


下一篇:Jenkins 中自动打包推送发布K8s应用