Expand my Community achievements bar.

Don’t miss the AEM Skill Exchange in SF on Nov 14—hear from industry leaders, learn best practices, and enhance your AEM strategy with practical tips.
SOLVED

Dispatcher flush multiple domains

Avatar

Level 3

Hi, I believe I've followed the instructions in this document: http://docs.adobe.com/docs/en/dispatcher/disp-domains.html

It's not working, I wonder if I need to create a virtual host section for "invalidation_only"? The error I get is

<p>The requested URL /invalidation_only/dispatcher/invalidate.cache was not found on this server.</p>

 

If so, can someone provide me with a snippet?

Thanks

1 Accepted Solution

Avatar

Correct answer by
Level 10

Yes you need to create an virtual host. Something like below in virtual host file

<VirtualHost *:80> ServerName invalidation_only DocumentRoot /var/docroot <Directory /> Set-Handler dispatcher-handler </Directory> </VirtualHost>

View solution in original post

1 Reply

Avatar

Correct answer by
Level 10

Yes you need to create an virtual host. Something like below in virtual host file

<VirtualHost *:80> ServerName invalidation_only DocumentRoot /var/docroot <Directory /> Set-Handler dispatcher-handler </Directory> </VirtualHost>