美文网首页
Mac 命令行 Command Line 配置代理, 配置白名单

Mac 命令行 Command Line 配置代理, 配置白名单

作者: 幸运者_Lucky | 来源:发表于2021-09-28 15:06 被阅读0次
    1. 前往文件夹 ~/
    2. Command + Shift + . 显示隐藏文件,再按一次重新隐藏
    3. 查看有没有 .bash_profile 文件,没有新建一个
    4. 配置代理
    export https_proxy=http://127.0.0.1:7890
    export http_proxy=http://127.0.0.1:7890
    export all_proxy=socks5://127.0.0.1:7890
    
    export no_proxy=\
    "\
    .xxx.com,\
    .xxx.xxx.com,\
    "
    

    白名单 no_proxy, 不走代理的地址,匹配规则:以 .xxx.com 结尾的不走代理

    相关文章

      网友评论

          本文标题:Mac 命令行 Command Line 配置代理, 配置白名单

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