Master Adobe Experience Manager Sites Developer Exam AD0-E134 with Confidence
Which property under /cache on dispatcher.any file identifies the directory where cached files are stored?
Start a Discussions
In a non-optimized website, the final HTML generated for a typical page by publish instance includes a relatively large number of
Start a Discussions
Which configuration/section should be used to resolve the domain name by dispatcher?
Correct : A
To resolve the domain name by the dispatcher, you should configure it in the vhosts file. The vhosts file is part of the Apache HTTP server configuration and allows you to define how requests for different domain names are handled. This is crucial for setting up virtual hosts, which is essential for resolving domain names and directing them to the appropriate content served by your AEM instance.
Here are the detailed steps to configure domain name resolution in the vhosts file:
Locate the vhosts file: The file is typically located in the conf directory of your Apache HTTP server installation. Common paths are:
/etc/httpd/conf/httpd.conf (on many Linux systems)
/usr/local/apache2/conf/httpd.conf (if installed from source)
Edit the vhosts file: Open the file with a text editor. You might need superuser permissions to edit this file.
Add a VirtualHost directive: Define a new VirtualHost block for your domain. For example:
<VirtualHost *:80>
ServerName www.example.com
ServerAlias example.com
DocumentRoot '/path/to/your/document/root'
# Dispatcher configuration
<IfModule disp_apache2.c>
SetHandler dispatcher-handler
ModMimeUsePathInfo On
</IfModule>
<Directory '/path/to/your/document/root'>
AllowOverride None
Options FollowSymLinks
Require all granted
</Directory>
</VirtualHost>
ServerName specifies the primary domain name.
ServerAlias allows you to specify additional names that should resolve to the same content.
DocumentRoot specifies the directory from which the content should be served.
The <IfModule disp_apache2.c> section includes the Dispatcher handler configuration.
Restart Apache: After saving the changes to the vhosts file, restart the Apache server to apply the changes.
sudo systemctl restart httpd
# or
sudo service apache2 restart
Start a Discussions
An AEM application is expected to export a content fragment in JSON format without any customization for a headless
implementation.
What is the recommended approach?
Start a Discussions
An AEM application has a Header and Footer authored on every page.
The customer asks for the following:
1. A centralized Header and Footer
2. The ability to create a variation for both the Header and Footer
3. Change the Header and Footer for specific time periods
4. The ability to restore a previous version for both the Header and Footer
What should the developer use to meet the requirements?
Start a Discussions
Total 50 questions