Expand my Community achievements bar.

SOLVED

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

Avatar

Level 7

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 

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

@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-...


Aanchal Sikka

View solution in original post

1 Reply

Avatar

Correct answer by
Community Advisor

@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-...


Aanchal Sikka