nginx是一款强大的反向代理服务器软件,除了作为http服务器和反向代理之外,还可以架设http代理服务器。
配置很简单:
resolver YOUR_RESOLV_IP;
server {
listen proxy_ip:proxy_port;
location / {
proxy_pass http://$http_host$request_uri;
access_log logs/http_proxy.access.log;
error_log logs/http_proxy.error.log;
}
}
=========================================================
wget通过http代理访问:
在服务器上wget之前,设置一下环境变量:
export http_proxy=proxy_ip:proxy_po