使用nginx搭建http代理服务器 New -1411018873 秒前 | WEB开发,建站相关 | 技安 | 暂无评论 使用nginx搭建http代理服务器 未加密解决方案 server { listen 8080; resolver 8.8.8.8; location /{ proxy_pass http://$http_host$request_uri; #allow 127.0.0.1; #deny all; } } 注意:必须加上resolver ……