apache - Positive SSL trusted in Chrome for desktop but not for Android -


i have bought positive ssl certificate not work in chrome android, net::err_cert_authority_invalid. however, ok chrome desktop.

this how configure apache2 server:

# file /etc/apache2/sites-available/000-default.conf <virtualhost *:80>    servername example.com    redirect permanent / https://example.com/ </virtualhost>  <virtualhost *:443>          serveradmin webmaster@localhost         documentroot /var/www/html          servername example.com         sslengine on         sslcertificatefile  /root/ssl/certificate/example.com.crt         sslcertificatekeyfile  /root/ssl/example.com.key         sslcertificatechainfile /root/ssl/certificate/intermediates.crt         # in version 2.4.8 or newer         #sslcacertificatefile /root/ssl/certificate/intermediates.crt          errorlog ${apache_log_dir}/error.log         customlog ${apache_log_dir}/access.log combined </virtualhost> 

and here it's how created intermediates.crt:

cat comodorsadomainvalidationsecureserverca.crt comodorsaaddtrustca.crt > intermediates.crt 

what missing?

i thought intermediates wrong, taking closer @ comodo website, configuration appears correct -- right certificates in right order.

have tried running site through ssl labs server test?


Comments

Popular posts from this blog

android - MPAndroidChart - How to add Annotations or images to the chart -

javascript - Add class to another page attribute using URL id - Jquery -

firefox - Where is 'webgl.osmesalib' parameter? -