• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

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