nginx 设置浏览器代理服务器
2017-08-10 本文已影响46人
totzcc
nginx 设置浏览器代理服务器
server {
listen 88;
location / {
proxy_pass $scheme://$http_host$request_uri;
proxy_set_header Host $host;
#proxy_pass proxy_pass http://$http_host$request_uri;
}
resolver 8.8.8.8;
}