如何配置 Nginx 在 404ing 之前尝试两个上游?

How to configure Nginx to try two upstreams before 404ing?

假设 Nginx 配置大致如下:

upstream A {
    server aa:8080;
}

upstream B {
    server bb:8080;
}

server {
  listen 80;

  location @backendA {
    proxy_pass http://A/;
  }

  location @backendB {
    proxy_pass http://B/;
  }

  location / {
    # This doesn't work. :)
    try_files @backendA @backendB =404;
  }
}

基本上,我希望 Nginx 尝试上游 A,如果 A return 是 404,则尝试上游 B,如果失败,return 向客户端发送 404。 try_files 对文件系统位置执行此操作,然后可以回退到命名位置,但它不适用于多个命名位置。有什么东西 有用吗?

背景: 我有一个 Django 网络应用程序(上游 A)和一个 Apache/Wordpress 实例(上游 B),我希望它们共存于同一个 URL 更简单的 Wordpress URLs 的命名空间:mysite.com/hello-world/ 而不是 mysite.com/blog/hello-world/

可以在 Nginx 位置复制我的 Django URLs 并使用 wordpress 作为万能的:

location /something-django-handles/ {
  proxy_pass http://A/;
}

location /something-else-django-handles/ {
  proxy_pass http://A/;
}

location / {
  proxy_pass http://B/;
}

但这违反了DRY原则,所以我想尽可能避免。 :) 有解决办法吗?

进一步谷歌搜索后,我发现了 this solution:

location / {
    # Send 404s to B
    error_page 404 = @backendB;
    proxy_intercept_errors on;
    log_not_found  off;

    # Try the proxy like normal
    proxy_set_header X-Forwarded-For $remote_addr;
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP  $remote_addr;
    proxy_pass http://A;
}

location @backendB {
    # If A didn't work, let's try B.
    proxy_set_header X-Forwarded-For $remote_addr;
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP  $remote_addr;
    proxy_pass http://B;

    # Any 404s here are handled normally.
}