• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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