重新路由nginx请求网址

时间:2016-10-12 16:08:03

标签: nginx dns reverse-proxy nginx-location

我有一个反向nginx代理,我想要路由所有请求:

http://dns.com/content/xyz <—to—> http://dns.com/content/1.0/xyz

我有一个上游:

upstream backend_api.content.com {
        server localhost:8080 max_fails=5 fail_timeout=30;
        keepalive 100;
  }

和位置:

#Content Service
location ~* ^/content/?(.*) {
     set $proxy_pass "http://backend_api.content.com";
     rewrite ^/content/1.0(/.*)$ /content/1.0$1 break;
     proxy_pass $proxy_pass
     proxy_http_version 1.1;
     proxy_set_header Connection "";
     proxy_set_header  X-Real-IP  $remote_addr;
     proxy_set_header  Host "api.stg.xxx.com";
     proxy_set_header X-3scale-proxy-secret-token $secret_token;
     proxy_set_header Original-Host $http_host;
     proxy_set_header Authorization $outbound_auth_header;
     proxy_set_header Original-Uri $scheme://$http_host$uri;
     post_action /out_of_band_oauth_authrep_action;
    }

但似乎http://dns/content/xyz的任何内容都失败了,只有当我给http://dns/content/1.0/xyz时它才有效。

1 个答案:

答案 0 :(得分:1)

您似乎正在捕获location ~* ^/content/?(.*)语句中的部分URI,但不对其执行任何操作。

你还有一个rewrite ^/content/1.0(/.*)$ /content/1.0$1 break;语句什么都不做,它只是写回相同的URI。

快速而肮脏的解决方案可能是使用两个rewrite语句,如下所示:

rewrite ^/content/1.0(/.*)$ /content/1.0$1 break;
rewrite ^/content(/.*)$ /content/1.0$1 break;

这意味着任何与第一次(非)重写不匹配的内容都将由第二次处理,并插入/1.0

就个人而言,我不喜欢它,宁可使用两个位置块:

location /content/1.0 {
    set $proxy_pass "http://backend_api.content.com";
    proxy_pass $proxy_pass;
    proxy_http_version 1.1;
    proxy_set_header ...
    ...
}
location /content {
    rewrite ^/content(/.*)$ /content/1.0$1 last;
}

但请检查其他location块的评估顺序。请注意,前缀位置块和正则表达式位置块具有不同的评估规则。有关详细信息,请参阅this document