From e2501960d3db265dde85928a6ee977ab1461c783 Mon Sep 17 00:00:00 2001 From: Eli Shvartsman Date: Tue, 29 Apr 2014 15:54:11 +0300 Subject: init ProxyConfig.certstore with custom certs --- libmproxy/proxy/config.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libmproxy/proxy/config.py') diff --git a/libmproxy/proxy/config.py b/libmproxy/proxy/config.py index 067c361d..4ae93368 100644 --- a/libmproxy/proxy/config.py +++ b/libmproxy/proxy/config.py @@ -25,6 +25,8 @@ class ProxyConfig: self.authenticator = authenticator self.confdir = os.path.expanduser(confdir) self.certstore = certutils.CertStore.from_store(self.confdir, CONF_BASENAME) + for spec, cert in certs: + self.certstore.add_cert_file(spec, cert) self.certforward = certforward -- cgit v1.2.3