Hello everyone
I was surprised how easy it is to configure the certbot but for some reason Firefox and Edge rejects my certificate while it works perfectly with chrome
(I already enabled SSLv2 in ssl.conf but still the same problem)
Edge 11.0.9600.18537
FFox 50.1.0
debian 8.5
apache 2.4.10
domain name : https://www.edenred-qa.be/
<IfModule mod_ssl.c>
<VirtualHost edenred-qa.be:443>
ServerName edenred-qa.be
ServerAdmin **********************
DocumentRoot /var/www/html/****************
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
SSLEngine on
SSLCertificateFile /etc/letsencrypt/live/edenred-qa.be/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/edenred-qa.be/privkey.pem
<FilesMatch "\.(cgi|shtml|phtml|php)$">
SSLOptions +StdEnvVars
</FilesMatch>
<Directory /usr/lib/cgi-bin>
SSLOptions +StdEnvVars
</Directory>
BrowserMatch "MSIE [2-6]" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
# MSIE 7 and newer should be able to use keepalive
BrowserMatch "MSIE [17-9]" ssl-unclean-shutdown
</VirtualHost>
</IfModule>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
please help
thanks