Skip to content

Instantly share code, notes, and snippets.

@MalloZup
Last active November 18, 2020 11:14

Disable TLS 1.0 and 1.1

ONLY SLE12 or LEAP12 systems

  1. Edit file: vim /srv/www/hawk/config/puma.rb
  ssl_bind @listen, @port, cert: @cert, key: @key, verify_mode: 'none', no_tlsv1: true,  no_tlsv1_1: true
  1. restart hawk with systemctl restart hawk

Testing your ssl setup with :

I tested with https://github.com/drwetter/testssl.sh

Regarding SLE15 and leap15

Sle 15 and higher version of hawk will provide by default tls 1.0 and 1.1 disabled.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment