if it's available, can you please provide the link? Thanks
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
Default configurations of dispatcher are available, when we create a new AEM project via archetype.
You can also check them at:
https://github.com/adobe/aem-project-archetype/tree/develop/src/main/archetype/dispatcher.ams
https://github.com/adobe/aem-project-archetype/tree/develop/src/main/archetype/dispatcher.cloud
You can simply create a new AEM project using the latest maven archetype which will provide you with all the basic config you need. Sample below for AEM cloud :
mvn -B org.apache.maven.plugins:maven-archetype-plugin:3.2.1:generate -D archetypeGroupId=com.adobe.aem -D archetypeArtifactId=aem-project-archetype -D archetypeVersion=49 -D appTitle="My Site" -D appId="mysite" -D groupId="com.mysite" -D aemVersion="cloud" -D includeDispatcherConfig="y"
It will create a disaptcher folder with the basic starter config in place.
More details :
https://github.com/adobe/aem-project-archetype
In case you are looking for onprem/ams version you can refer to the basic one from the below link and update the same
https://github.com/adobe/aem-guides-wknd/blob/main/dispatcher/README.md
Default configurations of dispatcher are available, when we create a new AEM project via archetype.
You can also check them at:
https://github.com/adobe/aem-project-archetype/tree/develop/src/main/archetype/dispatcher.ams
https://github.com/adobe/aem-project-archetype/tree/develop/src/main/archetype/dispatcher.cloud
@jayv25585659 Did you find the suggestion helpful? Please let us know if you require more information. Otherwise, please mark the answer as correct for posterity. If you've discovered a solution yourself, we would appreciate it if you could share it with the community. Thank you!
Hi,
The AEM Archetype is the official "template" that you should use. It ships with a "default" set of dispatcher configurations that are compatible with the version you will be deploying. There are no other official blueprints available, but you can also refer to this documentation which explains in detail the components of this blueprint: https://experienceleague.adobe.com/en/docs/experience-manager-dispatcher/using/configuring/dispatche...
Hope this helps
Views
Likes
Replies