Enable Sametime Proxy for Meetings

HCL Sametime Proxy 11.0 FP2 requires a configuration update to define the Sametime Meetings host name.

About this task

  1. Edit stproxyconfig.xml in the Proxy server's conf directory, by adding the following:
    <meeting>
    <host>HOST</host>
    <port>PORT</port>
    <isSecure>true</isSecure>
    </meeting>
    ...
    </configuration
  2. Change host and port match the Sametime Meetings deployment.
  3. Save and restart the Sametime Proxy server to enable.

Configuring the tokenDomain setting for single sign-on

Configure the tokenDomain setting for single sign-on on the Sametime Proxy Server in the stproxyconfig.xml file.

Procedure

  1. As a best practice, back up the stproxyconfig.xml file stored in the conf directory of the Sametime Proxy Server.
  2. Open the stproxyconfig.xml file with a text editor.
  3. Find or add the tokenDomain setting in the configuration section. Specify the valid domain name. Ensure that the domain does NOT include the preceding dot.

    For example,

    <configuration>
    ....
    <tokenDomain>company.com.br</tokenDomain>
  4. Save and close the file.
  5. Restart the Sametime Proxy Server.

Sametime Proxy

On the Sametime Proxy Server in the conf folder, edit the stproxyconfig.xml file adding <jwtSecret> and <refreshJwt> settings within <configuration> like so:

Note: The stproxyconfig.xml port for meetings default is 443.
<configuration>
...
<jwtSecret>
GENERATED_SECRET
</jwtSecret>
<refreshJwt>
<enabled>true</enabled>
<path>/meeting-auth/api/v1/refresh</path>
</refreshJwt>
<meeting>
<host>HOST</host>
<port>PORT</port>
<isSecure>true</isSecure>
</meeting>
<tokenDomain>company.com.br</tokenDomain>
...
</configuration>

On Linux, modify the ststart script

  1. On the Sametime Community Server, edit the 'ststart' script found in the server's data directory. Add:
     $PROGRAMDIR/STOpenSSL
     to
     LD_LIBRARY_PATH=$PROGRAMDIR:$LD_LIBRARY_PATH:$PROGRAMDIR/sticc
    The result will be
    LD_LIBRARY_PATH=$PROGRAMDIR:$LD_LIBRARY_PATH:$PROGRAMDIR/STOpenSSL:$PROGRAMDIR/sticc
  2. Save the changes and restart the Sametime Community with the ./ststart command. This will enable the Sametime Meeting policy and JWT Configuration.