Versions Compared

Key

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

...

GlobalSearch Go is a hosted client. Prior to being able to leverage the client on your GlobalSearch instance, a configuration file must be placed on the server. Square 9 Cloud Customers can skip this step, but should contact support@square-9.com to enable access if there are any connection problems.

GlobalSearch Go requires an SSL certificate to function. The certificate needs to be setup in your IIS (Internet Information Services). Which you acquire through a valid SSL provider. How To Perform A GlobalSearch SSL Switch-over

Note

Using a self signed certificate is not recommended. This is for temporary test machine demonstration purposes only.

In the Square9API’s file path (c:\inetpub\wwwroot\square9api) create a new folder called public, and within it, create a new file named config.json. The contents of this file should be:

Code Block
languagejson
{
    "apiUrl":  "https://YOURFQDN/square9api/api",
    "viewerUrl":  "https://YOURFQDN/globalsearchviewer",
    "licenseManagerUrl":  "https://YOURFQDN/square9web/GSWLicenseManager/",
    "userManagementUrl":  "https://YOURFQDN/square9web/UserManagement/",
    "adminUrl":  "https://YOURFQDN/square9web/#/admin/full",
    "gseUrlDefault":  "https://127.0.0.1:9443",
    "dashboards":  [],
    "authenticationProviders":{},
    "defaultShareDocumentExpirationDays":3
}
Note

Be sure to update YOURFQDN with the fully qualified domain name of your GlobalSearch instance.

...