0

Using CAS Overlay 5.0 Spring Boot CAS Authentication Server. Wanted to know how to configure redirection after logout. I am using spring security CAS client

dassum
  • 4,727
  • 2
  • 25
  • 38
  • At Client side i have used the following configuration logout().logoutUrl("/logout").invalidateHttpSession(true).deleteCookies("JSESSIONID"). logoutSuccessUrl("http://localhost:8080/cas/logout?service=http://localhost:9090").permitAll(); – dassum Nov 20 '16 at 18:17
  • Logout is working but redirection is not working – dassum Nov 20 '16 at 18:19
  • You can check my answer [here](https://stackoverflow.com/a/55529612/9381897). – leopal Apr 05 '19 at 06:46

1 Answers1

0

Add this setting to etc/cas/config/cas.properties file:

cas.logout.followServiceRedirects=true
Das_Geek
  • 2,775
  • 7
  • 20
  • 26
VNN456
  • 137
  • 8