From 49d8cc6f6b62c7f9885cee44d6c7a4171baab146 Mon Sep 17 00:00:00 2001 From: Amos Jeffries Date: Wed, 15 Jul 2015 09:09:06 -0700 Subject: [PATCH] Fix HTTPS ports not initialized properly after rev.14148 --- src/cache_cf.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cache_cf.cc b/src/cache_cf.cc index c68356f0af..5eafe10450 100644 --- a/src/cache_cf.cc +++ b/src/cache_cf.cc @@ -3669,6 +3669,7 @@ parsePortCfg(AnyP::PortCfgPointer *head, const char *optionName) } if (s->transport.protocol == AnyP::PROTO_HTTPS) { + s->secure.encryptTransport = true; #if USE_OPENSSL /* ssl-bump on https_port configuration requires either tproxy or intercept, and vice versa */ const bool hijacked = s->flags.isIntercepted(); -- 2.47.3