nginx做代理上网

server {
resolver 8.8.8.8;
listen 95;
 
location / {
proxy_pass http://$http_host$request_uri;
}
}
 
 
 
在需要上网内网机器的写上/root/.bashrc写上
export http_proxy=http://IP:95

转载于:https://www.cnblogs.com/zphj1987/archive/2013/01/05/2846056.html

你可能感兴趣的:(nginx做代理上网)