# 说明
因为本地主机都是用 v2rayN 翻墙,开发外网 API 也利用它的作为 http 代理
这里记录下,vbox 虚拟机作为运行环境时,也能用代理
# 踩坑
v2rayN 顶部菜单有 设置 》 参数数组 》 v2rayN 设置 勾选 允许来自局域网的连接
# 配置
# 编辑 | |
vi /etc/profile | |
#最后一行加上 (proxy_ip:port proxy_ip 是本地主机 port 是 v2rayN 的 http 代理端口,) | |
export http_proxy=http://proxy_ip:port #代表 http 代理 | |
#添加后执行 | |
source /etc/profile |
# 测试
curl www.google.com | |
#或者 | |
wget www.google.com |
# 取消代理 命令
unset http_proxy | |
unset https_proxy |