Hi,
We have integrated both Jira and Confluence with Okta.
With Jira it was easy to configure the logout.url parameter since it was found in [jira_webdir]/WEB-INF/classes/seraph-config.xml
With confluence a little more work was involved as we needed to extract /opt/atlassian/confluence/confluence/WEB-INF/lib/confluence-6.1.2.jar, update logout section in the xwork.xml.
<action name="logout" class="com.atlassian.confluence.user.actions.LogoutAction">
<interceptor-ref name="defaultStack"/>
<result name="error" type="velocity">/logout.vm</result>
<result name="success" type="redirect">https://oktapreview.com</result>
</action>
and repackage the jar file. Why is it that two applications from the same company have to configured in very different ways? Could we not have a generic way of configuring SSO that will be retained after upgrades?
Once configured how can we ensure that the login screens for both applications can never be accessible and ensure that authentication always happens through Okta? We dont want users to be able to manually login since it will bypass Okta and authenticate them through the application itself.
Regards,
Avinash
Why is modifying xwork.xml necessary? The Okta instructions say that if you're missing the logout.url param, to simply add it.
<init-param> <param-name>logout.url</param-name> <param-value>https://my.okta.com</param-value> </init-param>
Thanks that works :)
Is there any other parameter that needs updating to prevent the login screen from never showing up ?
In the case with the login there is also:
<param-name>link.login.url</param-name>
Is there also something similar for the logout url?
<param-name>link.logout.url</param-name>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi there Avinash,
You can check out our Global SSO for Confluence Add-on here if you're looking for a more seamless SSO configuration across your Atlassian products as this should cater for both your JIRA and Confluence instances.
On the other hand, for your concern on having Users manually login via the Application URL, your SSO configuration should have an option to redirect these logins back to Okta, where it'll work like an SP-initiated authentication, and still require Users to authenticate against the SSO before they can proceed.
Hope this helps to clarify. :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Ryan I will have a look and provide some feedback.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.