Enable SAML for Meetings

Enable SAML authentication for Sametime Meetings.

Before you begin

Configure and validate the Sametime Proxy and Sametime Community servers for SAML authentication.
Enable the following:
  • Anonymous policy (im.meetingsenabled) must be set to 1.
  • Enable guest access in stconfig.nsf Anonymous Access document.
  • Anonymous Users access to Community Services is set to true.

About this task

Docker

in .env update

"REACT_APP_SHOW_GUEST_LOGIN_BY_DEFAULT" to true 

"ENABLE_GUESTS" to "1"

If SAML is used for authentication, update the IDP URL you define in custom.env as the default is empty.

In custom.env, update the IDP_URL parameter.

IDP_URL

Kubernetes

Before install, in values.yaml update the REACT_APP_GUEST_LOGIN_BY_DEFAULT to true and set the IDP value.

Post-install, use the 'set env' command to update the deployment. Example:

kubectl set env deploy/web REACT_APP_GUEST_LOGIN_BY_DEFAULT=true

In the helm/charts/web/templates/deployment.yaml add and redeploy:

- name: REACT_APP_GUEST_LOGIN_BY_DEFAULT
          value: "true"|