首页  >  文章  >  后端开发  >  nginx 如何根据代理服务器的响应做不同的操作?

nginx 如何根据代理服务器的响应做不同的操作?

WBOY
WBOY原创
2016-12-01 00:57:101112浏览

有个问题.有的图片存在本地服务器,有的存在第三方服务器.
而且图片名称都类似~不好区分~
因此我想配个代理.如果在本地服务器找不到,就代理到第三方服务器.
请问这个nginx 如何配置?


最终解决方法:

<code>location /{
        root  xxxxx;
        index index.html;
        if (!-e $request_filename) {
            proxy_pass yyyyyy;
        }
    }</code>

回复内容:

有个问题.有的图片存在本地服务器,有的存在第三方服务器.
而且图片名称都类似~不好区分~
因此我想配个代理.如果在本地服务器找不到,就代理到第三方服务器.
请问这个nginx 如何配置?


最终解决方法:

<code>location /{
        root  xxxxx;
        index index.html;
        if (!-e $request_filename) {
            proxy_pass yyyyyy;
        }
    }</code>

错误重定向

location /{

<code>error_page   404   @test;</code>

}

location @test{

<code>proxy_pass http://upstreamName;</code>

}

最终这么解决的~

<code>location /{
        root xxxx;
        index index.html;
        if (!-e $request_filename) {
            proxy_pass yyyyyyyyy;
        }
    }</code>
声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn