有個問題.有的圖片存在本地伺服器,有的存在第三方伺服器.
而且圖片名稱都類似~不好區分~
因此我想配個代理.如果在本地伺服器找不到,就代理到第三方伺服器.
請問這個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>