0

我使用的是 nginx 代理,并试图用我的服务器 url 替换基本 url。例如,我想www.google.com通过我的代理localhost:8000,并将所有基本 url 实例 ( www.google.com) 替换为 ( localhost:8000)。

我的 nginx.conf 到目前为止:

    server {
        listen       8080;
        server_name  localhost;

   location / {
    proxy_pass http://www.google.com/;
    rewrite ^/.google.com /localhost:8080 last;
}
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
    }
4

1 回答 1

0

只需删除 'location /' 块中的重写指令。并添加中断;

location / {
    proxy_pass http://www.google.com/;
    break;
}
于 2013-10-30T03:59:08.463 回答