nginx设置代理配置
server {
listen 8086;
resolver 8.8.8.8;
location /{
proxy_pass http://$http_host$request_uri;
access_log off;
error_log off;
#allow 127.0.0.1;
#deny all;
}