diff --git a/binary_dependencies/jwtproxy b/binary_dependencies/jwtproxy index 17132a35c..8d479b09e 100755 Binary files a/binary_dependencies/jwtproxy and b/binary_dependencies/jwtproxy differ diff --git a/config.py b/config.py index 6d19d1541..abd1d70bd 100644 --- a/config.py +++ b/config.py @@ -289,7 +289,7 @@ class DefaultConfig(object): 'API_TIMEOUT_SECONDS': 10, 'API_TIMEOUT_POST_SECONDS': 480, } - JWTPROXY_SIGNER = 'https://localhost:8080' + JWTPROXY_SIGNER = 'localhost:8080' # Torrent management flags FEATURE_BITTORRENT = False diff --git a/util/secscan/api.py b/util/secscan/api.py index 5a49ec8ef..d6ae31502 100644 --- a/util/secscan/api.py +++ b/util/secscan/api.py @@ -253,7 +253,7 @@ class SecurityScannerAPI(object): api_url = urljoin(endpoint, '/' + security_config['API_VERSION']) + '/' url = urljoin(api_url, relative_url) - signer_proxy_url = self.config.get('JWTPROXY_SIGNER', 'https://localhost:8080') + signer_proxy_url = self.config.get('JWTPROXY_SIGNER', 'localhost:8080') with CloseForLongOperation(self.config): @@ -261,6 +261,6 @@ class SecurityScannerAPI(object): return client.request(method, url, json=body, params=params, timeout=timeout, cert=self._keys, verify='/conf/mitm.cert', headers=headers, proxies={ - 'https': signer_proxy_url, - 'http': signer_proxy_url + 'https': 'https://' + signer_proxy_url, + 'http': 'http://' + signer_proxy_url })