Versions Compared

Key

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

...

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

(Not recommended.) Temporary Using a self signed certificate is not recommended. This is for temporary test machine demonstration purposes only. If you plan on demonstrating GlobalSearch Go locally on a demonstration machine you can use a self signed certificate.

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.

...