Nginx配置如下: server { listen 8080; server_name www.xxx.com; index index.html index.htm index.php; root /home/wwwroot; location / { resolver 222.166.225.132; proxy_pass $scheme://$http_host$request_uri; proxy_buffers 256 4k; } access_log off; } 注意项: 1. 不能有hostname 2. 必须有resolver, 即dns,即上面的x.x.x.x,换成当前机器的DNS服务器ip即可(查看dns方法 cat /etc/resolv.conf 代理使用) 3 . $http_host和$request_uri是nginx系统变量,不要想着替换他们,保持原样就OK。 然后在浏览器中配置代理就可以了。 (责任编辑:IT) |