SSL WAMP Installation gives 403 & 400 error

I have installed/pasted my .pem and .key files to (C:\WAMP\bin\apache\apache2.4.27\conf\ssl)

Next I configured my httpd-vhost.conf file, and received the following errors, each with their own configuration…

Forbidden
You don’t have permission to access / on this server.
Apache/2.4.27 (Win64) OpenSSL/1.1.0f PHP/5.6.31 Server at www.compumodsa.com Port 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>

Bad Request
Your browser sent a request that this server could not understand.
Reason: You’re speaking plain HTTP to an SSL-enabled server port.
Instead use the HTTPS scheme to access this URL, please.
Apache/2.4.27 (Win64) OpenSSL/1.1.0f PHP/5.6.31 Server at CompuMod Port 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>

Please help me solve this…