zkdog/docs/code-server安装插件证书问题.md

13 lines
517 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 解决VScode报错提示证书未安装
解决方法如下。
在vscode 下 进入 文件->首选项–>设置 在上面的搜索框输入 proxy,会出现 有3个相关设置项
设置如下的选项
```bash
# 是否应根据提供的 CA 列表验证代理服务器证书。
"http.proxyStrictSSL": true, //设置为false , 这时候会在右侧的自定义设置中增加一条
"http.proxyStrictSSL": false 的键值对
# 重新加载 VScode ,然后在安装插件,会发现神奇的可以安装了。
```