• 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.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Resolved SSL not working - Let's Encrypt

brekelmansk

New Pleskian
Since yesterday we have made a switch from cPanel to Plesk Onyx.

After setting Let's Encrypt everything worked properly. Until this afternoon, the safe connection is no longer working.

When I go to my.hostname.com:8443 the SSL does not work at all and I see an error code in Chrome: ERR_SSL_PROTOCOL_ERROR. Details attached in the screenshot below.

l3vZuQz.png


However, when I check the certificate details, the status is "This certificate is okay".


I'm hoping someone can point me in the right direction.
 
Last edited:
Problem is fixed.

Settings in Plesk.conf was:

Code:
server {
                listen 8443;
                listen 8880;
                listen 127.0.0.1:8880 default_server;
                include cont.d/*ipv6_ports.inc;

We change this in:

Code:
server {
                listen 8443 ssl;
                listen 8880;
                listen 127.0.0.1:8880 default_server;
                include cont.d/*ipv6_ports.inc;
 
Back
Top