Changes between Version 2 and Version 3 of SecureHttp


Ignore:
Timestamp:
Sep 14, 2014, 3:29:08 PM (10 years ago)
Author:
davea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SecureHttp

    v2 v3  
    4444</VirtualHost>
    4545}}}
     46
     47== Intermediate CA file ==
     48
     49Depending on where you get your SSL certificate,
     50you may also need to get an "intermediate CA file" (also called a "chain file")
     51from your certificate issuer.
     52Then add a line of the form
     53{{{
     54SSLCACertificateFile /etc/apache2/path/to/chain/file
     55}}}
     56to your Apache config file.
     57For more info see https://degreesofzero.com/article/how-to-fix-missing-intermediate-ssl-certificate-errors-in-apache.html
     58
     59Apparently Android handles SSL more strictly than desktop browsers.
     60If you're seeing SSL problems only on Android,
     61it could be due to the above issue.