• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.

New SSL Cert for website not encrypting whole site

IATechsupport

Basic Pleskian
We have an issue with a new comodo SSL cert for an existing website, which has been done many times in the past with no problem. https://www.ghs-direct.com

This time the certificate is not encrypting the whole site, and has the little warning triangle and says its not encrypted.

Comodo, say its because of weak ciphers
https://sslanalyzer.comodoca.com/?url=www.ghs-direct.com

But I'm not so sure, it's never been a problem in the past, and we have changed anything

Can you point us in the right direction, to try and solve this please.
 
You need to change the Ciphers in the NGINX Template.
http://download1.parallels.com/Ples...nistration-guide/index.htm?fileName=68693.htm



cd /etc/nginx/ssl
openssl dhparam -out dhparam.pem 4096

ssl_dhparam /etc/nginx/ssl/dhparam.pem;
ssl_ciphers 'AES256+EECDH:AES256+EDH:!aNULL';
ssl_prefer_server_ciphers on;
ssl_ecdh_curve secp384r1;
add_header Strict-Transport-Security "max-age=31536000;includeSubDomains; preload";

https://www.ssllabs.com/ssltest/analyze.html?d=ghs-direct.com
 
Last edited:
Hi IATechsupport,

you serve http and https - content and should change all http - content to be served over https:

Code:
<img src="http://www.ghs-direct.com/_images/icon-facebook.png" alt=""><img src="http://www.ghs-direct.com/_images/icon-facebook-hover.png" alt=""></a>
Code:
<img src="http://www.ghs-direct.com/_images/icon-twitter.png" alt=""><img src="http://www.ghs-direct.com/_images/icon-twitter-hover.png" alt=""></a>
 
Hi IATechsupport,

please consider as well to use "Like" and/or "Best Answer" options here in the forum, to improve the forum and to help forum users to find answers to their questions and/or issues/problems. You find these options on the bottom of each post here in the forum.
 
Hi IATechsupport,

you serve http and https - content and should change all http - content to be served over https:

Code:
<img src="http://www.ghs-direct.com/_images/icon-facebook.png" alt=""><img src="http://www.ghs-direct.com/_images/icon-facebook-hover.png" alt=""></a>
Code:
<img src="http://www.ghs-direct.com/_images/icon-twitter.png" alt=""><img src="http://www.ghs-direct.com/_images/icon-twitter-hover.png" alt=""></a>
 
Back
Top