Which configuration/section should be used to resolve the domain name by dispatcher? | Community
Skip to main content
JakeCham
New Participant
December 28, 2023
Solved

Which configuration/section should be used to resolve the domain name by dispatcher?

  • December 28, 2023
  • 1 reply
  • 1077 views

Which configuration/section should be used to resolve the domain name by dispatcher?

 

Configuration in vhost or configuration in httpd.conf or configuration in DNS 

 

Thanks 

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by aanchal-sikka

@jakecham 

 

The domain resolution is done in vhost files. Details available here: https://www.youtube.com/watch?v=065rFmiZxq0 

 

Its the area that looks like

 

<VirtualHost *:80> ServerName "www.abc.cz" # Put names of which domains are used for your published site/content here ServerAlias ${PUBLISH_HOSTNAME} ServerAlias "cz.localhost" </VirtualHost>

 

 

 

In order to understand the code flow on receiving the request, please refer to "Code Flow" section on https://techrevel.blog/2023/08/28/navigating-aem-dispatcher-setup-farm-file-resolution-and-variable-utilization/

1 reply

aanchal-sikka
aanchal-sikkaAccepted solution
New Participant
December 28, 2023

@jakecham 

 

The domain resolution is done in vhost files. Details available here: https://www.youtube.com/watch?v=065rFmiZxq0 

 

Its the area that looks like

 

<VirtualHost *:80> ServerName "www.abc.cz" # Put names of which domains are used for your published site/content here ServerAlias ${PUBLISH_HOSTNAME} ServerAlias "cz.localhost" </VirtualHost>

 

 

 

In order to understand the code flow on receiving the request, please refer to "Code Flow" section on https://techrevel.blog/2023/08/28/navigating-aem-dispatcher-setup-farm-file-resolution-and-variable-utilization/

Aanchal Sikka