如何在nginx中处理spring boot logout重定向?

时间:2017-10-24 09:47:23

标签: nginx spring-boot reverse-proxy

我们有一个spring boot Web应用程序应用程序,它使用301重定向将注销重定向到索引页面。 我们在nginx中使用的以下snipper来处理重定向。但它没有被重定向。 502显示错误的网关错误。

location /UI/
{
proxy_pass http://localhost:6080/UI/;
proxy_set_header Host $http_host;
proxy_redirect / /;
proxy_intercept_errors on;
error_page 301 302 307 = @handle_redirects;
}
location @handle_redirects 
{
set $saved_redirect_location '$upstream_http_location';
proxy_pass $saved_redirect_location;
}

其中UI是在tomcat中运行的Web应用程序WAR的名称。

在spring boot security.xml中,有以下行。

有什么建议吗?

0 个答案:

没有答案