diff --git a/doc-content/enterprise-only/integration/sso-central-client-create-proc.adoc b/doc-content/enterprise-only/integration/sso-central-client-create-proc.adoc index b86fa988d0..82a367691a 100644 --- a/doc-content/enterprise-only/integration/sso-central-client-create-proc.adoc +++ b/doc-content/enterprise-only/integration/sso-central-client-create-proc.adoc @@ -37,3 +37,13 @@ If you are configuring RH-SSO with {OPENSHIFT}, enter the URL that is exposed by After you create a new client, its *Access Type* is set to `public` by default. Change it to `confidential`. + The RH-SSO server is now configured with a realm with a client for {CENTRAL} applications and running and listening for HTTP connections at [parameter]``localhost:8180``. This realm provides different users, roles, and sessions for {CENTRAL} applications. ++ +[NOTE] +==== +The RH-SSO server client uses one URL to a single {URL_COMPONENT_CENTRAL} deployment. The following error message might be displayed if there are two or more deployment configurations: +"We are sorry... `Invalid parameter: redirect_uri`" +To resolve this error, append `/*` to the *Valid Redirect URIs* field in the client configuration. On the *Configure* page, go to *Clients* > *kie* > *Settings*, and append the *Valid Redirect URIs* field with `/*`, for example: +---- +http://localhost:8080/business-central/* +---- +==== diff --git a/doc-content/enterprise-only/integration/sso-kie-server-client-proc.adoc b/doc-content/enterprise-only/integration/sso-kie-server-client-proc.adoc index 2834fcecab..70971a494b 100644 --- a/doc-content/enterprise-only/integration/sso-kie-server-client-proc.adoc +++ b/doc-content/enterprise-only/integration/sso-kie-server-client-proc.adoc @@ -27,3 +27,13 @@ If you are configuring RH-SSO with {OPENSHIFT}, enter the URL that is exposed by + . The new client *Access Type* is set to `public` by default. Change it to `confidential` and click *Save* again. . Navigate to the *Credentials* tab and copy the secret key. The secret key is required to configure the `kie-execution-server` client. ++ +[NOTE] +==== +The RH-SSO server client uses one URL to a single {KIE_SERVER} deployment. The following error message might be displayed if there are two or more deployment configurations: +"We are sorry... `Invalid parameter: redirect_uri`" +To resolve this error, you must append `/*` to the *Valid Redirect URIs* field in the client configuration. On the *Configure* page, go to *Clients* > *kie-execution-server* > *Settings*, and append the *Valid Redirect URIs* field with `/*`, for example: +---- +http://localhost:8080/kie-server/* +---- +==== diff --git a/doc-content/enterprise-only/integration/sso-remote-services-securing-proc.adoc b/doc-content/enterprise-only/integration/sso-remote-services-securing-proc.adoc index 496e809735..d76bc4f781 100644 --- a/doc-content/enterprise-only/integration/sso-remote-services-securing-proc.adoc +++ b/doc-content/enterprise-only/integration/sso-remote-services-securing-proc.adoc @@ -40,3 +40,16 @@ At this point, all users authenticated through the RH-SSO server can clone inter ---- git clone ssh://USER_NAME@localhost:8001/system ---- ++ +[NOTE] +==== +The RH-SSO server client uses one URL to a single remote service deployment. The following error message might be displayed if there are two or more deployment configurations: + +"We are sorry... `Invalid parameter: redirect_uri`" + +To resolve this error, you must append `/*` to the *Valid Redirect URIs* field in the client configuration. On the *Configure* page, go to *Clients* > *kie-git* > *Settings*, and append the *Valid Redirect URIs* field with `/*`, for example: + +---- +http://localhost:8080/remote-system/* +---- +====