async8
Forum Replies Created
-
resolved with bncert – much easier than in years past.
That worked. Thanks so much for your help.
Thank you for taking the time to respond. I’ve gone over this several times with the same result.
SSLLabs returns:
Certificates provided 1 (1326 bytes)
Chain issues IncompleteI’ve followed the steps outlined in all steps of your tutorial. Relevant section of my config files are as follows:
- wordpress-https-vhost.conf
<VirtualHost *:443 _default_:443> ServerName [redacted].ca ServerAlias *.[redacted].ca DocumentRoot "/opt/bitnami/wordpress" SSLEngine on SSLCertificateFile "/opt/bitnami/wordpress/keys/certificate.crt" SSLCertificateKeyFile "/opt/bitnami/wordpress/keys/private.pem"</Directory>
Include “/opt/bitnami/apache/conf/vhosts/htaccess/wordpress-htaccess.conf”- bitnami-ssl.conf
<IfModule !ssl_module>
LoadModule ssl_module modules/mod_ssl.so
</IfModule>
`Listen 443
SSLProtocol all -SSLv2 -SSLv3 -TLSv1 -TLSv1.1
SSLHonorCipherOrder on
SSLCipherSuite “redacted
SSLPassPhraseDialog builtin
SSLSessionCache “shmcb:/opt/bitnami/apache/logs/ssl_scache(redacted)”
SSLSessionCacheTimeout redacted<VirtualHost _default_:443>
DocumentRoot “/opt/bitnami/apache/htdocs”
SSLEngine on
SSLCertificateFile “/opt/bitnami/wordpress/keys/certificate.crt”
SSLCertificateKeyFile “/opt/bitnami/wordpress/keys/private.pem”
SSLCACertificateFile “/opt/bitnami/wordpress/keys/cabundle.crt”
<Directory “/opt/bitnami/apache/htdocs”>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
# Error Documents
ErrorDocument 503 /503.html
</VirtualHost>Any further guidance you can provide would be appreciated. Thank you.
- This reply was modified 4 years ago by async8.
Additional info:
SSL INFO
We could not find any VALID SSL certificate installed on your domain.Also, the incident content scanner returns the following: Valid SSL Certificate could not be detected on your site! Please install SSL Certificate & force HTTPS before checking for mixed content issues.
However when I run a openssl x509 the result indicates a valid cert. similarly the wordpress conf file and ssl conf file are referencing the right path for the cert and key.