代码之家  ›  专栏  ›  技术社区  ›  King

将不同的基本路径路由到相同的代理传递Nginx

  •  0
  • King  · 技术社区  · 2 年前

    我想把不同的路径传递给同一个proxy_pass,但我一直得到502坏网关。

    这些路径使用相同的端口号,但使用不同的基本路径。我如何根据当前返回错误的内容使其工作。

    这就是我现在的位置

    worker_processes 4;
    # worker_process auto
    events { worker_connections 1024; }
    
    http {
    
        server {
    
            listen 80;
            charset utf-8;
    
            location ~ ^/api/v1/(wallet|card)/(.*)$ {
                proxy_pass http://wallet-service:3007/api/v1/$1/;
                proxy_http_version 1.1;
                proxy_set_header Upgrade $http_upgrade;
                proxy_set_header Connection 'Upgrade';
                proxy_set_header Host $host;
                proxy_cache_bypass $http_upgrade;
            }
        }
    }
    
    0 回复  |  直到 2 年前
        1
  •  0
  •   Ivan Shatsky    2 年前

    如果您根本不需要更改URI,请不要使用上游名称以外的任何名称:

    location ~ ^/api/v1/(wallet|card)/ {
        proxy_pass http://wallet-service:3007;
        ...
    }
    

    如果URI在传递到上游之前需要重写,请检查 this 回答看怎么做。