快捷搜索:   nginx

Nginx 正向代理配置

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。

然后在浏览器中配置代理就可以了。

 

顶(0)
踩(0)

您可能还会对下面的文章感兴趣:

最新评论