Hi,
cas version 6.2.6
I'm able to redirect back to my own service after logout with the following properties:
cas.logout.follow-service-redirects=true
cas.logout.redirect-parameter=service
cas.logout.redirect-url=https://<cas-domain>/cas/logout?service=http\://<service-provider>
However, this is not a desired setup as I will have more service provider integrate with cas.
So instead I placed the redirect url on service registry json file:
{
"@class" : "org.apereo.cas.services.RegexRegisteredService",
"serviceId" : ".*",
"name" : "test",
"id" : 1001111,
"evaluationOrder" : 44,
"logoutType" : "BACK_CHANNEL",
"logoutUrl" : "https://<cas-domain>/cas/logout?service=http://<service-provider>"
}
This is not working as expected and I'm still stuck on cas logout page. What am I doing wrong here?