Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fernandoaleman/c7014b6e48473ab7f328a95b2d0db191 to your computer and use it in GitHub Desktop.
Save fernandoaleman/c7014b6e48473ab7f328a95b2d0db191 to your computer and use it in GitHub Desktop.
How to Manually Update Chef Server SSL Protocols

How To Manually Update Chef Server SSL Protocols

Open ssl config file

vim /var/opt/opscode/nginx/etc/chef_https_lb.conf

Update ssl_protocols

ssl_protocols TLSv1.2;

Restart nginx

chef-server-ctl restart nginx

Test updated ssl protocols

curl -I -v --tlsv1.2 --tls-max 1.2 https://www.yourdomain.com
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment