I'm running Win Server 2016,
Wamp 3.1.6
Apache 2.4.37
PHP 7.3
MYSQL 8.013
I am unable to use port 443 for ssl in a virtual host even though it is open on the firewall for SSL to allow incoming requests. I am UNABLE to ADD an additional Listen Port through the WAMP interface and it gives the error message below. Below is both the error message from WAMP and the virtual host settings from the VHOSTs file. Seems like a common basic problem but I'm surely stumped. Thanks
ERROR MSG:
"In the httpd-vhost.conf file: The Port used (443) for the VirtualHost dailymarkettrends.com:443 is not a Listen port"
VHOSTs Config:
Listen 443
<VirtualHost 23.98.128.174:443>
DocumentRoot "${INSTALL_DIR}/www/dailymarkettrends"
ServerName dailymarkettrends.com
ServerAlias www.dailymarkettrends.com
ServerAdmin support@baysidesoftware.com
ErrorLog "${INSTALL_DIR}/www/dailymarkettrends/ssllogs/error.log"
SSLEngine on
SSLCertificateFile "${INSTALL_DIR}/DMT_bin/Wamp64/Certs/www_dailymarkettrends_com.crt"
SSLCertificateKeyFile "${INSTALL_DIR}/DMT_bin/Wamp64/Certs/www_dailymarkettrends_com.key"
SSLCertificateChainFile "${INSTALL_DIR}/DMT_bin/Wamp64/Certs/DigiCertCA.crt"
<Directory "${INSTALL_DIR}/www/dailymarkettrends/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
Wamp 3.1.6
Apache 2.4.37
PHP 7.3
MYSQL 8.013
I am unable to use port 443 for ssl in a virtual host even though it is open on the firewall for SSL to allow incoming requests. I am UNABLE to ADD an additional Listen Port through the WAMP interface and it gives the error message below. Below is both the error message from WAMP and the virtual host settings from the VHOSTs file. Seems like a common basic problem but I'm surely stumped. Thanks
ERROR MSG:
"In the httpd-vhost.conf file: The Port used (443) for the VirtualHost dailymarkettrends.com:443 is not a Listen port"
VHOSTs Config:
Listen 443
<VirtualHost 23.98.128.174:443>
DocumentRoot "${INSTALL_DIR}/www/dailymarkettrends"
ServerName dailymarkettrends.com
ServerAlias www.dailymarkettrends.com
ServerAdmin support@baysidesoftware.com
ErrorLog "${INSTALL_DIR}/www/dailymarkettrends/ssllogs/error.log"
SSLEngine on
SSLCertificateFile "${INSTALL_DIR}/DMT_bin/Wamp64/Certs/www_dailymarkettrends_com.crt"
SSLCertificateKeyFile "${INSTALL_DIR}/DMT_bin/Wamp64/Certs/www_dailymarkettrends_com.key"
SSLCertificateChainFile "${INSTALL_DIR}/DMT_bin/Wamp64/Certs/DigiCertCA.crt"
<Directory "${INSTALL_DIR}/www/dailymarkettrends/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
</Directory>
</VirtualHost>