Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

To configure web application monitoring, add a list of allowed TLS versions and ciphers in uptime.conf using clientHttpCiphers, clientHttpTlsVersion, and ':' as delimiter, for example:

...

To enable specific SSL/TLS versions, you first must disable all other possible versions. For example, to enable only TLSv1.2, add the following code to uptmagnt.conf:

Code Block
options = NO_SSLv2
options = NO_SSLv3
options = NO_TLSv1
options = NO_TLSv1.1

...

Review the following example of uptmagnt.conf with a specific TLS version and cipher:

...