“我们可以对不同的nginx_location使用相同的proxy_pass吗?”

时间:2019-11-04 05:50:43

标签: nginx nginx-location

我正在尝试为Web服务设置Nginx服务器。我需要将两个位置指向同一端点。

在nginx.conf中指定位置,并配置所有端点。

我确实尝试在nginx.conf中使用正则表达式模式。但这对我不起作用。 另外,如果我保留两个位置,则只有一个端点在工作。当向其他端点触发api请求时,它会抛出502错误的网关。

        location /v1/test {
            proxy_pass http://www.testservice.com;
        }
        location /v1/tests {
            proxy_pass http://www.testservice.com;
        }

测试和测试位置指向相同的proxy_pass端点。但是,只有其中之一得到服务。另一个抛出502错误的网关错误。

我正在尝试使两个端点的响应相同。

0 个答案:

没有答案