By: Jakub Synowiec user 01 Nov 2018 at 2:35 p.m. CDT

5 Responses
Jakub Synowiec gravatar
Hi, I want to have an additional page that will show up before the default Gluu's oxTrust Admin UI. Where can I configure the redirect from the oxAuth/login page? Thanks, - Jakub

By Aliaksandr Samuseu staff 01 Nov 2018 at 3:55 p.m. CDT

Aliaksandr Samuseu gravatar
Hi, Jakub. "Configure" is not the right word here, you'll need to implement it, modify some sources or scripts on disk. Advanced topics like this are not covered by Community support, so you'll have to do your own research of the source code and bring somebody familiar with technology stack used to power the Gluu Server, unless you are planning to sign a support contract with us.

By William Lowe user 01 Nov 2018 at 4:28 p.m. CDT

William Lowe gravatar
Just one additional note.. when you navigate to your `idphostname` , the redirect that directs you to `/identity` (a.k.a. oxTrust) is set in the Apache web server. So you can adjust the web server to redirect to another application as required. See [this doc](https://gluu.org/docs/ce/operation/faq/#how-to-redirect-your-gluu-hostname-to-a-url-other-than-identity).

By Michael Schwartz Account Admin 01 Nov 2018 at 4:35 p.m. CDT

Michael Schwartz gravatar
You will have to make a custom build of oxTrust to accomplish this. Why is this important? What does this page do?

By Jakub Synowiec user 02 Nov 2018 at 10:29 a.m. CDT

Jakub Synowiec gravatar
Hi Aliaksandr - Sorry to use the wrong words to describe the redirect - I thought the redirect would be in one of the .xml or .properties files, as a configuration that I could change. I have no problem modifying source code, I was just wondering if you know which part of configuration/scripts/code I have to modify. William - Thanks for the suggestion - I think this solution may work, as the application I want to redirect to is a SAML 2.0 SP that I configured to work with Gluu SP. I'll try it out and let you know how it turned out for me. Michael - Thanks for the suggestion of rebuilding oxTrust - I'll take a look at this option in case suggestion from William doesn't work for me. What I need to do with that page is a nice SSO application dashboard for users, something like okta has with its 'Web portal' [here](https://www.okta.com/products/single-sign-on/) Why is this important? I want users to have one place to go when they want to access all the SSO apps they are allowed to access, so it's improving user experience.

By William Lowe user 02 Nov 2018 at 10:32 a.m. CDT

William Lowe gravatar
> I want users to have one place to go when they want to access all the SSO apps they are allowed to access, so it's improving user experience. Yes, if this is the objective.. write an app that shows the user their apps, configure SSO between that app and Gluu, and then set that as the redirect in Apache. When user's navigate directly to the hostname, they will be prompted for authentication, and post auth, redirected to your app dashboard. Thanks, Will