使用Nginx重写单个api端点

时间:2019-01-26 07:13:07

标签: nginx

我有一个使用此nginx配置的api后端

location /api {
    proxy_pass http://localhost:5000;
    proxy_set_header Host liveblog.dday.it;
    expires epoch;

    sub_filter_once off;
    sub_filter_types application/json;
    sub_filter 'http://localhost' 'http://$host';
}

在最新版本的应用中,身份验证api已更改了端点,我等不及更新的应用了。

旧应用对此终端进行api调用

www.example.com/api/auth

后端正在等待该端点的发布

www.example.com/api/auth_db

如何仅为此端点重写URL?

0 个答案:

没有答案