Hi @richb201, actually the "SSLCertificateChainFile" became obsolete in 2.4.8 although it should still work.
Anyhow, you can manually append the contents of "bundle.ca-bundle" to "substantiator_com.crt", that should be enough. It is explained here:
Note! Starting from Apache 2.4.8, the āSSLCertificateChainFileā directive became obsolete. Intermediate certificates (CA bundle) can be added to the āSSLCertificateFileā right after the certificate code.
So basically your configuration would look like this (like you mentioned in your previous post):
<VirtualHost _default_:443>
DocumentRoot "/opt/bitnami/apache2/htdocs"
SSLEngine on
SSLCertificateFile "/opt/bitnami/apache2/conf/substantiator_com.crt"
SSLCertificateKeyFile "/opt/bitnami/apache2/conf/substantiator.key"
...
After that restart Apache and it should work.
If you keep getting errors, we have a Support Tool that will gather relevant information for us to analyze your configuration and logs. Could you please download and execute it on the machine where the stack is running by following the steps described in the guide below?
How to Run the Bitnami Support Tool
Please note that you need to paste the code outputted by the tool in your reply.