• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • 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 Transport security for HTTP/2 protocol with Nginx

B4c4rd1

Regular Pleskian
Hello everybody,

I was given several complaints that some visitors can not access the pages. The following error message is displayed on google chrome:

ERR_SPDY_INADEQUATE_TRANSPORT_SECURITY

The error only occurs under http2 in connection with SSL.

To resolve the error, unsupported ciphers must be disabled.

Example:
Code:
# disable unsupported ciphers
ssl_ciphers EECDH+AESGCM:EDH+AESGCM:EECDH:EDH:!MD5:!RC4:!LOW:!MEDIUM:!CAMELLIA:!ECDSA:!DES:!DSS:!3DES:!NULL;

Is there a possibility that the option will be added in the future?

Steps to reproduce the error:

Install Windows XP in a Virtual Environment. Download the google chrome browser and go to the encrypted page with enabled http/2 and ssl.
 
Hi B4c4rd1,

Is there a possibility that the option will be added in the future?
Could you pls. be more specific "which option" you desire in the future?
It's up to each customer, which cipher suites he/she uses. Plesk just provides some standarts, but which cipher suites are used is a totally unqiue customer decision.

We use for example the recommended ciphers lists from Mozilla ( Intermediate ) on our servers ( with an "A+" rating for all (sub)domains ):

=> https://wiki.mozilla.org/Security/Server_Side_TLS / https://mozilla.github.io/server-side-tls/ssl-config-generator/

Example:
Code:
ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA:ECDHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-RSA-AES256-SHA256:DHE-RSA-AES256-SHA:ECDHE-ECDSA-DES-CBC3-SHA:ECDHE-RSA-DES-CBC3-SHA:EDH-RSA-DES-CBC3-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:DES-CBC3-SHA:!DSS

... but you could be as well interested in the Cloudflare cipher suites suggestions/usage:

=> https://support.cloudflare.com/hc/en-us/articles/200933580

Example:
Code:
EECDH+CHACHA20:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5


I suggest to use the Qualys SSL Labs - Test site at => https://www.ssllabs.com/ssltest/ , to simulate quite a lot of handshakes, with different cipher suites. When you are satisfied with the results, consider to visit:


... and inform yourself about the possible configuration options.
 
Thanks for the last link. He did well. Thank you. Why is this not implemented if it with the standard configuration to fail with older browsern?
 
Back
Top