Commit 36d56292 authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

nghttpx: Use nghttp2::ssl::DEFAULT_CIPHER_LIST for backend TLS connection

parent 928a8188
......@@ -637,7 +637,7 @@ SSL_CTX *create_ssl_client_context() {
if (get_config()->ciphers) {
ciphers = get_config()->ciphers.get();
} else {
ciphers = "HIGH:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!3DES:!MD5:!PSK";
ciphers = nghttp2::ssl::DEFAULT_CIPHER_LIST;
}
if (SSL_CTX_set_cipher_list(ssl_ctx, ciphers) == 0) {
LOG(FATAL) << "SSL_CTX_set_cipher_list " << ciphers
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment