Versions Compared

Key

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

...

If you have followed the Implementing HTTPS Browsing for the Web Interface article to implement HTTPS browsing in Uptime IM, you will have noticed the following line in the <uptime_root>\apache\conf\httpd.conf file.

Code Block
languagebash
SSLProtocol ALL -SSLv2 -SSLv3

That line indicates that all versions of TLS will be accepted but SSLv2 and SSLv3 will be refused.  If you only want to accept TLSv1.2, you can replace that line with this one.  After making the change, restart the Uptime Web Server service.

Code Block
languagebash
SSLProtocol -ALL +TLSv1.2

...