SSL not working on FIreFox
-
Re: Create a custom or blank project with auto virtual host
When I go to my URL the browser gives me a "Problem loading page >> Secure Connection Failed"
Here is my conf file
define ROOT "D:/laragon/www/proj/"
define SITE "proj.test"<VirtualHost *:80>
DocumentRoot "${ROOT}"
ServerName ${SITE}
ServerAlias *.${SITE}
<Directory "${ROOT}">
AllowOverride All
Require all granted
</Directory>
</VirtualHost><VirtualHost *:443>
DocumentRoot "${ROOT}"
ServerName ${SITE}
ServerAlias *.${SITE}
<Directory "${ROOT}">
AllowOverride All
Require all granted
</Directory>SSLEngine on SSLCertificateFile D:/laragon/etc/ssl/laragon.crt SSLCertificateKeyFile D:/laragon/etc/ssl/laragon.key
</VirtualHost>