Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

unable to get local issuer certificate vscode

I am trying to install extensions for VSCode. But getting unable to get local issuer certifiate. my settings.json

    // Place your settings in this file to overwrite the default settings { // Controls the font family.
"editor.fontFamily": "Consolas",

    // Controls the font size.
"editor.fontSize": 12,

    //Setting corporate proxy
"http.proxy": "http://proxy_servr:3128",
"https.proxy": "http://proxy_servr:3128",

    //Disable SSL Verification
"http.proxyStrictSSL": false }
like image 331
karthikeayan Avatar asked Jan 21 '16 10:01

karthikeayan


2 Answers

In VS code: Click File -> Preferences ->Settings

{
"http.proxyStrictSSL":false,
"http.proxy":"http://USERID:[email protected]:3128"
}

It appears that you have not added authentication credentials to http.proxy

like image 58
Rajat Surana Avatar answered Sep 22 '22 00:09

Rajat Surana


Edit %AppData%/Roaming/Code/User/settings.json, adding:

{
    ...
    "http.proxyStrictSSL":false,
    ...
}
like image 37
diogo Avatar answered Sep 19 '22 00:09

diogo