nginx反向代理处理301、302跳转

nginx可以作为很好的反向代理工具,应用非常广泛

一般用来保护后方的服务器,避免直接被用户访问

如果后方服务器返回302,此时,如果不进行特殊处理,客户端也收到302,但是如果客户端访问不到内部的服务器就要让nginx主动跟随302的地址,把内容取给我们,这需要进行如下设置:

server {
    ...
 
    location / {
        proxy_pass http://127.0.0.1:8081;
        
        proxy_intercept_errors on;
        error_page 301 302 307 = @handle_redirects;
    }
 
    location @handle_redirects {
        set $saved_redirect_location '$upstream_http_location';
        proxy_pass $saved_redirect_location;
    }
}

基本意思是添加对错误的处理,在服务器返回301 302 307的情况下,执行handle_redirects规则,

在handle_redirects规则中, 设置变量saved_redirect_location 为新获取的http地址,然后再跳转过去。

参考:
nginx - Intercepting backend 301/302 redirects (proxy_pass) and rewriting to another location block possible? - Stack Overflow
Module ngx_http_proxy_module

点赞