Hi @ViaVu,
In AEM as a Cloud Service (AEMaaCS), you cannot directly access the OSGi configuration console (/system/console/configMgr
) on Adobe-managed environments (like author/preview/publish in Cloud Manager). This is by design for security and stability reasons in the cloud.
Per article - you should follow Adobe's code-based configuration approach using the /apps/<your-project>/config
folders.
1. Create the configuration file in the appropriate folder
For example:
/apps/myproject/config/com.day.cq.wcm.msm.impl.actions.ReferencesUpdateActionFactory.config
If you want the config to apply only to author or publish, place it in:
/apps/myproject/config.author/
or
/apps/myproject/config.publish/
2. Sample Configuration File
{
"cq.wcm.msm.action.excludednodetypes": "regexToExcludeNodeTypes",
"cq.wcm.msm.action.excludedparagraphitems": "regexToExcludeParagraphItems",
"cq.wcm.msm.action.excludedprops": "regexToExcludePageProperties",
"cq.wcm.msm.impl.action.referencesupdate.prop_updateNested": false
}
Replace or add more properties as needed.
3. Validate on Local SDK
4. Deploy to Cloud Manager
-
Commit and push your changes to your Git repo (e.g., Adobe Cloud Manager repo).
-
Deploy via Cloud Manager pipeline.
Santosh Sai

