Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagetext
[service.local]
protocol = "http"
policy = "failover"
admins = ["admin"]

[service.local.credential]
username = "user"
password = "password"

[[service.local.targets]]
hostname = "b2bmft.stonebranch.com<fqdn>"
port = 9180<port>

Example with Okta

Under your account create a new App Integration.

Image Modified

Follow the steps:

  • Set the application Name:

Image Modified

  • SAML Settings

Image Modified

For callback ( POST ) use: https://<fqnd>:<port>/service/auth/sso/saml/callbackExample B2B:

https://b2bmft.stonebranch.com:9190/service/auth/sso/saml/callback


Review your configuration underImage Modified

From this view, copy Point 1 and download the certificate

Image Added

Create the following entry under the Proxy configuration for a service:

Code Block
languagetext
[service.local.auth.saml]
file = "udmg-sso-okta.json"

Create a configuration file udmg-sso-okta.json

Code Block
languagetext
{
    "entityIssuer": "udmg-sso",
    "ssoURL": "https://dev-39492773.okta.com/app/dev-39492773_udmgsso_1/exk9a2wo9rT8orbpj5d7/sso/saml",
    "ca": "/config/udmg-okta-sso.cert",
    "redirectURI": "https://b2bmft.stonebranch.com:9190<fqdn>:<port>/service/auth/sso/saml/callback",
    "insecureSkipSignatureValidation": true,
    "usernameAttr": "name",
    "emailAttr": "name",
    "groupsAttr": "groups"
 }

Restart the UDMG Auth Proxy.

Go to the Admin UI and select the SAML Provider.

...