• Please be aware: Kaspersky Anti-Virus has been deprecated
    With the upgrade to Plesk Obsidian 18.0.64, "Kaspersky Anti-Virus for Servers" will be automatically removed from the servers it is installed on. We recommend that you migrate to Sophos Anti-Virus for Servers.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

Resolved TLSv1.3

Walter

Basic Pleskian
It doesn't appear as though Plesk formally supports TLSv1.3. Either that or the sslmng command needs to be updated. How would you enable TLSv1.3 for nginx?

Code:
user@pleskserver:~# plesk sbin sslmng --custom --protocols="TLSv1.2 TLSv1.3"
WARNING:Ignoring unsuppored protocol TLSv1.3

Code:
user@pleskserver:~# plesk -v
Product version: Plesk Onyx 17.5.3 Update #22
    Update date: 2017/09/18 06:25
     Build date: 2017/03/17 16:00

Code:
user@pleskserver:~# nginx -v
nginx version: nginx/1.11.10
 
I missed my own version before posting the request. I am using nginx 1.11 and not 1.13

http://nginx.org/en/CHANGES
Changes with nginx 1.13.0 25 Apr 2017
*) Feature: the "TLSv1.3" parameter of the "ssl_protocols" directive.

Still interested in understanding where I can customize the TLS protocols and ciphers...
 
I realized my error before your response and altered my question... I posted that I found my issue with the nginx version but am still interested in understanding where one would customize the protocols and ciphers for nginx manually?
 
Hi Walter,

where one would customize the protocols and ciphers for nginx manually?
A "find" - command helps you to display the corresponding files over your command line ( logged in as user "root" over SSH ), which use settings for "ssl_ciphers" or/and "ssl_protocols" at nginx - configuration - files.

Examples:
Code:
find /etc/nginx -type f -name "*.conf" -exec grep --color -Hni "ssl_ciphers" {} \;
and
Code:
find /etc/nginx -type f -name "*.conf" -exec grep --color -Hni "ssl_protocols" {} \;
 
Thank you UFHH01. Didn't just hand me a fish but gave me the pole, worm and hook!

/etc/nginx/conf.d/ssl.conf
 
Back
Top