Hi @NavyaVo,
To add a custom HTTP response header at the Dispatcher level, you'll need to update the Apache HTTPD configuration via the dispatcher.yaml or directly in a custom config under /conf.d.
Here's how you can do it:
Add Header Using Apache Directive
In your custom virtual host config (eg. *.vhost file under /conf.d/available_vhosts/), add:
<Directory />
Header set X-Content-Source "AEM-Publish"
</Directory>
Or more specifically:
<VirtualHost *:80>
ServerName www.example.com
# Existing config...
<Location />
Header set X-Content-Source "AEM-Publish"
</Location>
</VirtualHost>
Make sure you have mod_headers enabled (this is typically enabled by default in AEMaaCS Dispatcher SDK).
Santosh Sai

