내 커뮤니티 업적 표시줄을 확대합니다.

Submissions are now open for the 2026 Adobe Experience Maker Awards.

Mark Solution

활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.

해결됨

Not able to see x-dispatcher param in response headers

Avatar

Level 2

Hi, 

i am not able to see the value of x-dispatcher (used to see which dispatcher is serving request)parameter info in the response headers when i see chrome console, does any config exist to enable/disable it in dispatcher files??

 

Thanks,

Shivam

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
Employee Advisor

You need to enable the /info property in dispatcher farm file. Reference - https://stackoverflow.com/questions/43461109/examine-cq-dispatcher-from-client 

원본 게시물의 솔루션 보기

3 답변 개

Avatar

정확한 답변 작성자:
Employee Advisor

You need to enable the /info property in dispatcher farm file. Reference - https://stackoverflow.com/questions/43461109/examine-cq-dispatcher-from-client 

Avatar

Level 10

Hi @shivama92274331,

X-Dispatcher is added explicitly using mod_headers.c module in vhost file in <VirtualHost.. entry or can be added at CDN level if you have one.

<IfModule mod_headers.c>
Header add X-Dispatcher <<dispatchername>>
</IfModule>

If this entry is available and still not available in response headers, share the webserver and dispatcher version details to debug further.

Avatar

Level 2

Hi @Vijayalakshmi_S 

Thanks for your reply, it worked after adding Header always add X-Dispatcher ${DISP_ID} in vhost file.