macOS 终端设置http和https代理

本文前提是有可用的代理并且在1087端口监听http, 1087为本地http代理端口,可能会有所偏差,需要查询代理配置
1、运行命令 vim ~/.bashrc , 写入如下内容

export http_proxy="http://localhost:1087"   
export https_proxy="http://localhost:1087"
#export all_proxy="http:127.0.0.1:1087"   #not used now,set proxy of all protocols

2、运行命令 vim ~/.bash_profile,写入如下内容

source ~/.bashrc

3、重启终端,运行命令curl ip.gs显示当前ip和所属地区查看是否代理成功
macOS 终端设置http和https代理_第1张图片

你可能感兴趣的:(macOS 终端设置http和https代理)