Versions Compared

Key

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

Documentation Under construction

Table of Contents

...

 

SSL Configuration

Secure access can be enabled in the Staging Repository to restrict access to the REST APIs through https connections using client certificates to authenticate and authorize the access.

...

The option can be enabled/disabled per Storage Unit through the administration API.

Code Block
GET admin/enableContentCompression/

...

<storage-

...

unit>/

...

<true-false>

Content Processing

Storage Unit has a set of events that are triggered during different actions performed while interacting with the Storage Unit. Content processing modules can be configured to be executed on these events. A content processing module is a javascript file that implements one or more events.

...

Code Block
languagejs
themeRDark
{
    "modules": {
        "connector": [
            {
                "module": "ForeignKeyJoin"
            },
            ...
        ]
    }
}

 

With this configuration, foreign key merges will happen for the connector scope on any Process or Fetch event.

...