Configuration
Note
This documentation refers to the v12 package (or later) for Episerver. If you are using an older version, please refer to the v11 configuration documentation.
You can configure ImageVault Connect for Episerver using the standard client configuration as explained in the installation documentation.
There exists some other options that allows you to control the product even further. These configuration options are added into the appsettings.json of the Episerver site.
ImageVault.Optimizely.Common
These options can be found in the ImageVaultOptimizelyCommonOptions class.
DisablePingOnPublish
Normally when you publish a page, the plugin tries to access the page using the published page url in order to trigger events that records what media is used on what page. This behavior can be turned off by setting this configuration option to true.
{
"ImageVault": {
"Optimizely": {
"Common": {
"DisablePingOnPublish": true
}
}
}
}
DisableClaimsRemap
As default, default rules for Claim remapping is applied when the ImageVaultModule is initialized. You can disable this behavior by setting this configuration value to true.
{
"ImageVault": {
"Optimizely": {
"Common": {
"DisableClaimsRemap": true
}
}
}
}
DisableContentEventHandlers
Can be used to disable all content event handlers. Default is false. For more information regarding content event handlers, see Content event handlers.
{
"ImageVault": {
"Optimizely": {
"Common": {
"DisableContentEventHandlers": true
}
}
}
}