我是nginx的新手-正在使用Vouch代理并尝试利用其注销重定向:https://github.com/vouch/vouch-proxy#logout-endpoint-redirection
在我的应用中,我输入的网址是:mydomain.com/tools/app/logout?url={somevalue}
然后在nginx中,我将其传递给vouch代理
location /tools/app/logout {
proxy_pass http://vouch/logout;
}
但是也可以传递该?url={somevalue}
参数吗?基本上附加到proxy_pass http://vouch/logout
吗?
任何帮助表示赞赏。
谢谢。