Move bmcweb to mozilla compatibility ciphers

Problems were found in compatibility with older versions of curl and
wget.  At some point, this option needs to be made runtime configurable.

Tested by:
Using curl to log into rest API.
Logging into webui.

Change-Id: I29620cbae73735e846efc1cc22df6899dbe595df
Signed-off-by: Ed Tanous <ed.tanous@intel.com>
diff --git a/include/ssl_key_handler.hpp b/include/ssl_key_handler.hpp
index ef512e6..4db4a8f 100644
--- a/include/ssl_key_handler.hpp
+++ b/include/ssl_key_handler.hpp
@@ -303,7 +303,7 @@
   std::string aes_only_ciphers = "AES128+EECDH:AES128+EDH:!aNULL:!eNULL";
 
   if (SSL_CTX_set_cipher_list(m_ssl_context.native_handle(),
-                              mozilla_modern_ciphers.c_str()) != 1) {
+                              mozilla_compatibility_ciphers.c_str()) != 1) {
     CROW_LOG_ERROR << "Error setting cipher list\n";
   }
   return m_ssl_context;