bring proxy stuff together

add http.proxyStrictSSL option

fixes #155
This commit is contained in:
Joao Moreno
2015-12-01 18:20:57 +01:00
parent 9b6bff1573
commit eaa5bcfe19
6 changed files with 102 additions and 54 deletions

View File

@@ -125,6 +125,11 @@ confRegistry.registerConfiguration({
'http.proxy': {
'type': 'string',
'description': nls.localize('proxy', "The proxy setting to use. If not set will be taken from the http_proxy and https_proxy environment variables")
},
'http.proxyStrictSSL': {
'type': 'boolean',
'default': true,
'description': nls.localize('strictSSL', "Whether the proxy server certificate should be verified against the list of supplied CAs.")
}
}
});