• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    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.

Issue Nginx disable tls v1.0

yehudigt

Basic Pleskian
I'm unable to disable tls v1.0 following this guide.
How to enable or disable TLS protocol versions in Plesk for Linux

When I try I get this error:
[root@webserver conf.d]# /usr/local/psa/bin/server_pref -u -ssl-protocols 'TLSv1.1 TLSv1.2'
Ciphers and protocols were not changed for 'nginx' because of custom configuration is used

I can't understand what i have to do. This is my ssl.conf in /etc/nginx/conf.d
ssl_ciphers EECDH+AESGCM+AES128:EECDH+AESGCM+AES256:EECDH+CHACHA20:EDH+AESGCM+AES128:EDH+AESGCM+AES256:EDH+CHACHA20:EECDH+SHA256+AES128:EECDH+SHA384+AES256:EDH+SHA256+AES128:EDH+SHA256+AES256:EECDH+SHA1+AES128:EECDH+SHA1+AES256:EDH+SHA1+AES128:EDH+SHA1+AES256:EECDH+HIGH:EDH+HIGH:AESGCM+AES128:AESGCM+AES256:CHACHA20:SHA256+AES128:SHA256+AES256:SHA1+AES128:SHA1+AES256:HIGH:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!MD5:!PSK:!KRB5:!aECDH:!EDH+3DES;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;

Please help
 
If the issue is only with nginx, you can simply edit
/etc/nginx/conf.d
with a text editor and save the updated version, then
# nginx -t
and if good
# service nginx reload
 
Back
Top