- Windows本地Https访问问题或者是非Http协议无法走代理的问题:
使用sock代理的形式进行TCP的代理
- WSL2中需要使用代理, 使用DNS服务地址获取主机IP
host_ip=$(cat /etc/resolv.conf |grep "nameserver" |cut -f 2 -d " ") export http_proxy="http://$host_ip:port" export https_proxy="http://$host_ip:port"
- Docker中需要使用代理, 需要手动写入主机IP, 其访问的DNS服务不是主机地址
export http_proxy="http://host_ip:port" export https_proxy="http://host_ip:port"