我已经将我的 .pem 和 .key 文件安装/粘贴到了( C:\ WAMP \ bin \ apache \ apache2.4.27 \ conf \ ssl )
下一步,我配置了 httpd-vhost.conf 文件,并收到以下错误,每个错误都有自己的配置…
禁止 您无权访问此服务器上的/。 Apache / 2.4.27(Win64)OpenSSL / 1.1.0f PHP / 5.6.31服务器位于 www.compumodsa.com 1端口80
# Virtual Hosts
#
<VirtualHost *:443>
ServerName CompuMod
SSLEngine on
SSLCertificateFile C:\WAMP\bin\apache\apache2.4.27\conf\ssl\compumodsa.com.pem
SSLCertificateKeyFile C:\WAMP\bin\apache\apache2.4.27\conf\ssl\compumodsa.com.key
ServerAlias localhost
DocumentRoot "${INSTALL_DIR}/www"
<Directory "${INSTALL_DIR}/www/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
错误请求 您的浏览器发送了一个请求,要求该服务器无法 了解。原因:您对支持SSL的用户使用纯HTTP 服务器端口。请改用HTTPS方案访问此URL。 CompuMod上的Apache / 2.4.27(Win64)OpenSSL / 1.1.0f PHP / 5.6.31服务器 端口443
# Virtual Hosts
#
<VirtualHost *:80>
ServerName CompuMod
SSLEngine on
SSLCertificateFile C:\WAMP\bin\apache\apache2.4.27\conf\ssl\compumodsa.com.pem
SSLCertificateKeyFile C:\WAMP\bin\apache\apache2.4.27\conf\ssl\compumodsa.com.key
ServerAlias localhost
DocumentRoot "${INSTALL_DIR}/www"
<Directory "${INSTALL_DIR}/www/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
请帮助我解决这个问题...