美文网首页
Mac curl 支持 https安装

Mac curl 支持 https安装

作者: klggg | 来源:发表于2022-03-10 19:11 被阅读0次

openssl 安装

curl 安装

MAC命令行下使用代理

  • vim .zshrc

  • alias setproxy="export https_proxy=http://127.0.0.1:1087 http_proxy=http://127.0.0.1:1087 all_proxy=socks5://127.0.0.1:1080 no_proxy=localhost,192.168.,127.0."

  • alias unsetproxy="unset ALL_PROXY; unset https_proxy; unset http_proxy; unset no_proxy"

  • 某些https接口只配置 all_proxy 没用,会连接超时,需要配置上 https_proxy

参考文档

相关文章

网友评论

      本文标题:Mac curl 支持 https安装

      本文链接:https://www.haomeiwen.com/subject/whhqdrtx.html