我有一个使用此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?