NGINX - 在 proxy_pass 中使用变量会中断路由

NGINX - Using variable in proxy_pass breaks routing

我试图让 NGINX 的解析器自动更新 DNS 解析缓存,所以我正在过渡到使用变量作为 proxy_pass 值来实现这一点。但是,当我确实使用变量时,它会使所有请求都转到请求的根端点并切断 url 的任何其他路径。这是我的配置:

resolver 10.0.0.2 valid=10s;

server {
    listen 80;
    server_name localhost;

    location /api/test-service/ {
        proxy_redirect     off;

        proxy_set_header   X-Real-IP        $remote_addr;
        proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;

        # If these 2 lines are uncommented, 'http://example.com/api/test-service/test' goes to 'http://example.com/api/test-service/'
        set $pass_url http://test-microservice.example.com:80/;
        proxy_pass  $pass_url;

        # If this line is uncommented, things work as expected. 'http://example.com/api/test-service/test' goes to 'http://example.com/api/test-service/test'
        # proxy_pass  http://test-microservice.example.com:80/;

    }

这对我来说没有任何意义,因为硬编码的 URL 和变量的值是相同的。有什么我想念的吗?

编辑:啊,所以我找到了问题所在。但我不完全确定如何处理它。由于这是一个反向代理,我需要 proxy_pass 在将 URI 传递给代理之前从 URI 中删除 /api/test-service/。所以..

这个:

http://example.com/api/test-service/test

应该代理这个:

http://test-microservice.example.com:80/test

而是代理这个:

http://test-microservice.example.com:80/api/test-service/test

当我不使用变量时,它会删除它没问题。但是变量添加了它。这就是使用变量的本质吗?

您在文档中遗漏了一点

When variables are used in proxy_pass:

location /name/ {
  proxy_pass http://127.0.0.1$request_uri;
}

In this case, if URI is specified in the directive, it is passed to the server as is, replacing the original request URI.

所以你的配置需要改成

set $pass_url http://test-microservice.example.com:80$request_uri;
proxy_pass  $pass_url;