The system configuration file (system-config.json) defines the key system-level settings, such as logging level, setup status, and help resource links for the OpenEdge Center server.

The default location for this file on the Windows platform is C:\Progress\OECC\data\conf, and that for the Linux platform is /usr/oecc/data/conf.

The sample system-config.json configuration file is as follows:
{
  "loglevel": "info",
  "firstTimeSetupDone": true,
  "helpURLs": {
    "documentation": "https://docs.progress.com/bundle/openedge-command-center-olh/page/Learn-about-OpenEdge-Command-Center.html",
    "support": "https://www.progress.com/support/openedge",
    "community": "https://community.progress.com/s/",
    "privacy": "https://www.progress.com/legal/privacy-policy",
    "gettingStartedVideo": "https://www.youtube.com/embed/1fwRdti5QhQ",
    "faqs": "https://www.progress.com/faqs",
    "restAPI": {
      "agents": "https://documentation.progress.com/output/OpenEdge-Command-Center/#tag/Agent",
      "pasoe": "https://documentation.progress.com/output/OpenEdge-Command-Center/#tag/Progress-Application-Server",
      "database": "https://documentation.progress.com/output/OpenEdge-Command-Center/#tag/Database",
      "users": "https://documentation.progress.com/output/OpenEdge-Command-Center/#tag/Admin/paths/~1admin~1users/get",
      "authorizationServer": "https://documentation.progress.com/output/OECC/Authorization-Server-APIs/index.html#tag/Users"
    }
  }
}
The following table describes the attributes in the system-config.json file:
Attribute Description
loglevel Specifies the verbosity of server logs. The supported values are:
  • info
  • debug
  • warn
  • trace
The default value is info.
maxFileUploadSize Indicates the maximum file size (in bytes) that the server allows for uploads. By default, the value is set to 523,239,424 bytes (499 MB). To increase the upload limit, add the maxFileUploadSize attribute to this configuration file and specify the value in bytes. The maximum value you can set is 3,221,225,472 bytes (3 GB). If you set a higher value than this limit, the server automatically reverts to the maximum allowed upload size of 3,221,225,472 bytes.
firstTimeSetupDone Specifies whether the initial setup is done during installation.
helpURLs Provides the links to the product documentation.
Note: Progress recommends that you do not change the default settings in the configuration file unless you have a specific requirement.