nginx 如何根据代理服务器的响应做不同的操作?
高洛峰
高洛峰 2016-11-08 13:12:19
0
1
508

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

最终解决方法:

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


高洛峰
高洛峰

拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...

Antworte allen(1)
三叔

最终这么解决的~

location /{
        root xxxx;
        index index.html;
        if (!-e $request_filename) {
            proxy_pass yyyyyyyyy;
        }
    }


Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage